[CLOSED] Ext.AbstractManager was deprecated

  1. #1

    [CLOSED] Ext.AbstractManager was deprecated

    To Whom It May Concern: Ext.AbstractManager was deprecated, use Ext.ComponentManager instead, as shown below:

    Going further, Ext.ComponentManager has a new method onAvailable (Registers a function that will be called (a single time) when an item with the specified id is added to the manager. This will happen on instantiation). For more information: http://docs-origin.sencha.com/extjs/...od-onAvailable

    Ext.AbstractManager.override({
        register: function (item) {
            this.callParent(arguments);
           //Your Custom Logic
        },
        unregister: function (item) {
            this.callParent(arguments);
            //Your Custom Logic
        }
    });
    Ext.override(Ext.ComponentManager, {
        register: function (item) {
            this.callParent(arguments);
            //Your Custom Logic
        },
        unregister: function (item) {
            this.callParent(arguments);
            //Your Custom Logic
        }
    });
    Last edited by Daniil; Dec 03, 2014 at 7:54 PM. Reason: [CLOSED]
  2. #2
    Hi Raphael,

    Thank you for sharing that information!

    P.S. We appreciate all the v3 threads that you have posted so far. We apologize for the delay in answering. Currently, we are a little bit more busy than usually having a group meeting in person. We will answer everything as soon as possible.
  3. #3
    You're welcome Daniil.

    Please mark this thread as closed.

Similar Threads

  1. Replies: 6
    Last Post: Sep 04, 2012, 12:59 PM

Posting Permissions