-
8 Nov 2012 4:49 AM #1
Unanswered: How to override Ext.create()
Unanswered: How to override Ext.create()
Hi all,
How can we override Ext.create. The functionality should be in such a way that when ever an object is getting created the overridden create method should be called.
Any help would be really appreciated.
Regards
url
-
8 Nov 2012 5:53 AM #2
Try this:
Also, you can use Ext.Function.interceptBefore(), Ext.Function.interceptAfter().Code:Ext.$create = Ext.create; Ext.create = function(){ // your code here return Ext.$create.apply(Ext, arguments); }
-
8 Nov 2012 9:15 PM #3
Thanx for ur quick responce
Thanx for ur quick responce
Hi veitis
Thanx for ur quick response.
My requirement is to add unique id to each object which is getting created using Ext.create method and should show that id's in one panel/window. This panel/window should be displayed in application's viewport. If the object is destroyed then the color of id should be changed.
Any help would be really appreciated.
Thanx
-
9 Nov 2012 12:07 AM #4
While defining the object, assign a random value to the id property that may solve your problem.
Thanks


Reply With Quote