1. #1
    Sencha User
    Join Date
    Apr 2012
    Posts
    50
    Vote Rating
    0
    url is on a distinguished road

      0  

    Default 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

  2. #2
    Sencha - Community Support Team
    Join Date
    Jan 2012
    Posts
    1,376
    Vote Rating
    100
    Answers
    343
    vietits is a name known to all vietits is a name known to all vietits is a name known to all vietits is a name known to all vietits is a name known to all vietits is a name known to all

      0  

    Default


    Try this:
    Code:
    Ext.$create = Ext.create;
    Ext.create = function(){
        // your code here
        return Ext.$create.apply(Ext, arguments);
    }
    Also, you can use Ext.Function.interceptBefore(), Ext.Function.interceptAfter().

  3. #3
    Sencha User
    Join Date
    Apr 2012
    Posts
    50
    Vote Rating
    0
    url is on a distinguished road

      0  

    Default 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

  4. #4
    Sencha User
    Join Date
    Mar 2011
    Location
    Bhubaneswar
    Posts
    34
    Vote Rating
    0
    Zinnia is on a distinguished road

      0  

    Default


    While defining the object, assign a random value to the id property that may solve your problem.

    Thanks