Friday, November 9, 2018

Wednesday, November 7, 2018

How to Extend a Script Include

Script Includes can extend existing Script Includes to access the methods. In below example, I will demonstrate how we can we extend an existing Script Include with a simple Script Include. var parentSI = Class.create(); parentSI.prototype = { initialize: function() { }, upperCase : function(string){ return string.toUpperCase(); }, type: 'parentSI' }; Below you can see how childSI...
Share: