Lines Matching refs:after
41 * Subscribers to the "after" moment of this event, will be notified
42 * after a child is added.
64 * Subscribers to the "after" moment of this event, will be notified
65 * after a child is removed.
86 handle = this.after("initializedChange", function (e) {
94 Y.after(this._renderChildren, this, "renderUI");
95 Y.after(this._bindUIParent, this, "bindUI");
97 this.after("selectionChange", this._afterSelectionChange);
98 this.after("selectedChange", this._afterParentSelectedChange);
99 this.after("activeDescendantChange", this._afterActiveDescendantChange);
101 this._hDestroyChild = this.after("*:destroy", this._afterDestroyChild);
102 this.after("*:focusedChange", this._updateActiveDescendant);
495 // Update index in case it got normalized after addition
500 child.after("selectedChange", Y.bind(this._updateSelection, this));
745 siblingBB.insert(childBB, "after");
792 * This method in invoked after bindUI is invoked for the Widget class
800 this.after("addChild", this._afterAddChild);
801 this.after("removeChild", this._afterRemoveChild);
807 * This method in invoked after renderUI is invoked for the Widget class