Lines Matching refs:after
39 * Subscribers to the "after" moment of this event, will be notified
40 * after a child is added.
62 * Subscribers to the "after" moment of this event, will be notified
63 * after a child is removed.
84 handle = this.after("initializedChange", function (e) {
92 Y.after(this._renderChildren, this, "renderUI");
93 Y.after(this._bindUIParent, this, "bindUI");
95 this.after("selectionChange", this._afterSelectionChange);
96 this.after("selectedChange", this._afterParentSelectedChange);
97 this.after("activeDescendantChange", this._afterActiveDescendantChange);
99 this._hDestroyChild = this.after("*:destroy", this._afterDestroyChild);
100 this.after("*:focusedChange", this._updateActiveDescendant);
493 // Update index in case it got normalized after addition
498 child.after("selectedChange", Y.bind(this._updateSelection, this));
743 siblingBB.insert(childBB, "after");
790 * This method in invoked after bindUI is invoked for the Widget class
798 this.after("addChild", this._afterAddChild);
799 this.after("removeChild", this._afterRemoveChild);
805 * This method in invoked after renderUI is invoked for the Widget class