I come from the C / C ++ syntax family, so some things here are not familiar to me.
constructor: function(manufacturer, model, topSpeed, maxAltitude){
So now, when I call the parent constructor, why do I include data in []? When I did something like this in C #, I just send data like in any normal function.
Could it be:
this.callParent(manufacturer, model, topSpeed);
This example from
Ext-JS 4 Web Application Development Book
but I think this is a JavaScript problem.
Thanks.
user1630599
source share