Hi guys,
As i am new to extjs i just want to understand basic phenomenon of ext js , i got confused when i saw class concept in extjs programming , because in javascript we only deals with objects. Can anybody help me to understand the relevance of using class , extend and object instantiation fundamentals.
JavaScript doesn't really have the concept of classes, they are really just functions and objects.
Panel extends Container and the reason why one extends another is there is functionality in Container that Panel wants to use so Panel extends Container. If it didn't then you would have to duplicate code which would blow the library up quite a bit.