I'm been working in javascript on use of SubClass and SuperClass, but i cant make this work. I've been looking to a lot of examples, but nothing work so far.
The basic code i need is this:
// SubClass
List1 = function(htmlId)
{
var _htmlId = htmlId;
console.log('LIST1');
this.init();
};
List1.prototype.init = function()
{
console.log('LIST1: init');
this.load();
}
List1.prototype.render = function(dados)
{
console.log('LIST1: render');
alert('HTML ID: ' + this._htmlId);
alert('HTML ID: ' + this.dados);
}
// SuperClass
Component1 = function()
{
console.log('COMPONENT1');
};
Component1.prototype.load = function()
{
console.log('COMPONENT1: load');
alert('LOAD: ' + this._htmlId);
this.render('data');
}
I'm not very expert in JavaScript, but someone told me to make the classes in JavaScrip this way.
I'm trying to extend the List1 to use the SuperClass Component but i cant get this work:
List1.prototype = new Component1();
List1.constructor = List1;
var component = new List1(componentHtmlId);