Hello,
I want to use the Extends functionality from the framework so that my classes could inherit from each other.
Basically I have this class:
CODEBOX
var FreeAreaView = new KONtx.Class({
ClassName: 'FreeAreaView',
Extends: MyCustomClass,
initView: function() {
},
createView: function() {
},
updateView: function() {
}
});
I don't want to overwrite the initView definition from the base class, I just want to call the one from MyCustomClass with different parameters.
I know this is a noobish question, but I've searched the forum and haven't found anything.
Thank you for your time,
Florin