Tagged Questions

9
votes
6answers
10k views

Better way to call superclass method in ExtJS

All the ExtJS documentation and examples I have read suggest calling superclass methods like this: MyApp.MyPanel = Ext.extend(Ext.Panel, { initComponent: function() { // do something MyPanel ...
5
votes
2answers
90 views

Javascript Prototype Chaining super class constructor and method calling

I'm a newbie in the JavaScript world, and I came up with this weird problem when i was attempting prototype chaining inheritence. I have 3 classes //class parent function parent(param_1){ ...
2
votes
2answers
89 views

How & Why to use SUPER in code?

I work with some advanced JavaScript people and they have used the SUPER keyword in their code. I admit, I don't have a good grasp of how and why one can and would use this. Can someone direct me or ...
2
votes
2answers
59 views

JavaScript inherit object values

is it possible to inherit an Object (reference) value from a class? function A() { this.x = {}; } function B() { this.y = {}; } B.prototype = new A(); //... var b1 = new B(); var b2 = new ...
1
vote
1answer
144 views

Calling overridden methods in JavaScript

i tried to find a way to call overridden method of superclass in JS and got this. function A() { this.superclass = new Array(A.prototype); } A.prototype.call_method = function(method, args, pos) ...
0
votes
1answer
51 views

JavaScript: Create subclass from inside superclass instance

I am quite experienced with coding in Javascript, but there's still one thing I can't really wrap my head around. I have a superclass, let's say Category. Now I want to create some instances of a ...
0
votes
1answer
38 views

Trivial Inheritance with JavaScript

function StringStream() {} StringStream.prototype = new Array(); StringStream.prototype.toString = function(){ return this.join(''); }; Calling new StringStream(1,2,3) gives an empty array x = new ...
0
votes
0answers
154 views

JavaScript SubClass and SuperClass

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: // ...