Searched refs:after (Results 1 - 25 of 176) sorted by relevance

12345678

/yui3/build/datatable-message/
H A Ddatatable-message-debug.js175 this.after(['dataChange', '*:add', '*:remove', '*:reset'],
178 this.after('columnsChange', Y.bind('_afterMessageColumnsChange', this));
180 this.after('showMessagesChange',
196 this.after('renderBody', Y.bind('_initMessageNode', this));
199 this.after(Y.bind('_bindMessageUI', this), this, 'bindUI');
200 this.after(Y.bind('_syncMessageUI', this), this, 'syncUI');
/yui3/src/datatable/js/
H A Dmessage.js173 this.after(['dataChange', '*:add', '*:remove', '*:reset'],
176 this.after('columnsChange', Y.bind('_afterMessageColumnsChange', this));
178 this.after('showMessagesChange',
194 this.after('renderBody', Y.bind('_initMessageNode', this));
197 this.after(Y.bind('_bindMessageUI', this), this, 'bindUI');
198 this.after(Y.bind('_syncMessageUI', this), this, 'syncUI');
H A Dcolwidths.js196 this.after('renderTable', function (e) {
199 this.after('columnsChange', this._uiSetColumns);
/yui3/src/charts/js/
H A DAxisType.js16 this.after("dataReady", Y.bind(this._dataChangeHandler, this));
17 this.after("dataUpdate", Y.bind(this._dataChangeHandler, this));
18 this.after("minimumChange", Y.bind(this._keyChangeHandler, this));
19 this.after("maximumChange", Y.bind(this._keyChangeHandler, this));
20 this.after("keysChange", this._keyChangeHandler);
21 this.after("dataProviderChange", this._dataProviderChangeHandler);
22 this.after("alwaysShowZeroChange", this._keyChangeHandler);
23 this.after("roundingMethodChange", this._keyChangeHandler);
32 this.after("stylesChange", this._updateHandler);
33 this.after("overlapGraphChang
[all...]
H A DCartesianSeries.js71 xAxis.after("dataReady", Y.bind(this._xDataChangeHandler, this));
72 xAxis.after("dataUpdate", Y.bind(this._xDataChangeHandler, this));
76 yAxis.after("dataReady", Y.bind(this._yDataChangeHandler, this));
77 yAxis.after("dataUpdate", Y.bind(this._yDataChangeHandler, this));
79 this.after("xAxisChange", this._xAxisChangeHandler);
80 this.after("yAxisChange", this._yAxisChangeHandler);
81 this.after("stylesChange", function(e) {
88 this.after("widthChange", function(e) {
95 this.after("heightChange", function(e) {
102 this.after("visibleChang
[all...]
/yui3/src/widget-stack/js/
H A DWidget-Stack.js59 Y.after(this._renderUIStack, this, RENDER_UI);
60 Y.after(this._syncUIStack, this, SYNC_UI);
61 Y.after(this._bindUIStack, this, BIND_UI);
145 * invoked after syncUI is invoked for the Widget class using YUI's aop infrastructure.
159 * This method is invoked after bindUI is invoked for the Widget class
166 this.after(ShimChange, this._afterShimChange);
167 this.after(ZIndexChange, this._afterZIndexChange);
173 * This method in invoked after renderUI is invoked for the Widget class
292 // Should be revisted after Ticket #2531067 is resolved.
324 // handles.push(this.after(VisibleChang
[all...]
/yui3/build/widget-stack/
H A Dwidget-stack-debug.js61 Y.after(this._renderUIStack, this, RENDER_UI);
62 Y.after(this._syncUIStack, this, SYNC_UI);
63 Y.after(this._bindUIStack, this, BIND_UI);
147 * invoked after syncUI is invoked for the Widget class using YUI's aop infrastructure.
161 * This method is invoked after bindUI is invoked for the Widget class
168 this.after(ShimChange, this._afterShimChange);
169 this.after(ZIndexChange, this._afterZIndexChange);
175 * This method in invoked after renderUI is invoked for the Widget class
294 // Should be revisted after Ticket #2531067 is resolved.
326 // handles.push(this.after(VisibleChang
[all...]
/yui3/build/widget-position/
H A Dwidget-position-debug.js37 Y.after(this._renderUIPosition, this, RENDERUI);
38 Y.after(this._syncUIPosition, this, SYNCUI);
39 Y.after(this._bindUIPosition, this, BINDUI);
118 * This method in invoked after renderUI is invoked for the Widget class
131 * This method in invoked after syncUI is invoked for the Widget class
149 * This method in invoked after bindUI is invoked for the Widget class
156 this.after(XYChange, this._afterXYChange);
/yui3/src/widget-position/js/
H A DWidget-Position.js35 Y.after(this._renderUIPosition, this, RENDERUI);
36 Y.after(this._syncUIPosition, this, SYNCUI);
37 Y.after(this._bindUIPosition, this, BINDUI);
116 * This method in invoked after renderUI is invoked for the Widget class
129 * This method in invoked after syncUI is invoked for the Widget class
147 * This method in invoked after bindUI is invoked for the Widget class
154 this.after(XYChange, this._afterXYChange);
/yui3/build/editor-para-base/
H A Deditor-para-base-debug.js60 * Performs a block element filter when the Editor after an content change
71 * Performs block/paste filtering after paste.
91 host.after('ready', Y.bind(this._afterEditorReady, this));
92 host.after('contentChange', Y.bind(this._afterContentChange, this));
94 host.after('dom:paste', Y.bind(this._afterPaste, this));
/yui3/src/editor/js/
H A Deditor-para-base.js58 * Performs a block element filter when the Editor after an content change
69 * Performs block/paste filtering after paste.
89 host.after('ready', Y.bind(this._afterEditorReady, this));
90 host.after('contentChange', Y.bind(this._afterContentChange, this));
92 host.after('dom:paste', Y.bind(this._afterPaste, this));
/yui3/src/plugin/js/
H A Dplugin.js129 * Listens for the "after" moment of events fired by the host,
130 * or injects code "after" a given method on the host.
134 * @param strMethod {String} The event to listen for, or method to inject logic after.
135 * @param fn {Function} The handler function. For events, the "after" moment listener. For methods, the function to execute after the given method is executed.
144 } else if (host.after) { // event
169 * Listens for the "after" moment of events fired by the host object.
180 var handle = this.get("host").after(type, fn, context || this);
203 * Injects a function to be executed after a given method on host object.
208 * @param {String} method The name of the method to inject the function after
[all...]
/yui3/src/widget-autohide/js/
H A DWidget-Autohide.js35 Y.after(this._bindUIAutohide, this, BIND_UI);
36 Y.after(this._syncUIAutohide, this, SYNC_UI);
98 * This method in invoked after bindUI is invoked for the Widget class
106 this.after(VISIBLE+CHANGE, this._afterHostVisibleChangeAutohide);
107 this.after("hideOnChange", this._afterHideOnChange);
114 * This method in invoked after syncUI is invoked for the Widget class
/yui3/build/widget-parent/
H A Dwidget-parent-debug.js41 * 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("activeDescendantChang
[all...]
/yui3/src/widget-parent/js/
H A DWidget-Parent.js39 * 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("activeDescendantChang
[all...]
/yui3/build/widget-autohide/
H A Dwidget-autohide-debug.js37 Y.after(this._bindUIAutohide, this, BIND_UI);
38 Y.after(this._syncUIAutohide, this, SYNC_UI);
100 * This method in invoked after bindUI is invoked for the Widget class
108 this.after(VISIBLE+CHANGE, this._afterHostVisibleChangeAutohide);
109 this.after("hideOnChange", this._afterHideOnChange);
116 * This method in invoked after syncUI is invoked for the Widget class
/yui3/src/button/js/
H A Dplugin.js58 Y.Do.after(this._afterNodeGet, node, 'get', this);
59 Y.Do.after(this._afterNodeSet, node, 'set', this);
/yui3/src/common/tests/assets/
H A Dtest-console.js26 after: {
/yui3/src/event-custom/tests/src/
H A Devent-do.js8 //"test before/after with falsy context binds args": "ticket pending"
16 "test before/after with falsy context binds args": function () {
23 et.after(function() {
30 et.after(function() {
54 Y.Do.after(function () {
58 Y.Do.after(function () {
68 name: "EventTarget on/before/after",
159 // Test each in before and after phases
/yui3/src/event-custom/js/
H A Devent-do.js10 * Allows for the insertion of methods that are executed before or after
67 * <p>Execute the supplied method after the specified function. Wrapping
78 * other after phase wrappers.</dd>
84 * @method after
93 after: function(fn, obj, sFn, c) {
104 * Execute the supplied method before or after the specified function.
105 * Used by <code>before</code> and <code>after</code>.
108 * @param when {string} before or after
151 * Detach a before or after subscription.
176 * by 'after' even
[all...]
H A Devent-target.js61 var t = type, detachcategory, after, i;
70 after = true;
85 // detach category, full type with instance prefix, is this an after listener, short type
86 return [detachcategory, (pre) ? _getType(t, pre) : t, after, t];
152 * This is the equivalent to <code>after</code> except the
163 var handle = this.after.apply(this, arguments);
185 * * whether or not this is an after listener,
202 * after the event name.
224 detachcategory, handle, store = Y.Env.evt.handles, after, adapt, shorttype,
227 // full name, args, detachcategory, after
[all...]
/yui3/src/base/js/
H A DBase.js79 * <dt>after</dt>
80 * <dd>An event name to listener function map, to register event listeners for the "after" moment of the event. A constructor convenience property for the <a href="Base.html#method_after">after</a> method.</dd>
106 * `Base` supports "on", "after", "plugins" and "bubbleTargets" properties,
118 Base._NON_ATTRS_CFG = BaseCore._NON_ATTRS_CFG.concat(["on", "after", "bubbleTargets"]);
209 * Subscribers to the "after" momemt of this event, will be notified
210 * after initialization of the object is complete (and therefore
234 * Handles the special on, after and target properties which allow the user to
235 * easily configure on and after listeners as well as bubble targets during
247 if (config.after) {
[all...]
/yui3/src/widget-anim/js/
H A DWidgetAnim.js164 this.after(ANIM_SHOW_CHANGE, this._bindAnimShow);
165 this.after(ANIM_HIDE_CHANGE, this._bindAnimHide);
209 * so it can be invoked before or after the animation starts or stops, since the original
244 // Setup original visibility handling (for hide) after completing animation
245 this.get(ANIM_HIDE).after(END,
/yui3/src/widget-child/js/
H A DWidget-Child.js19 Y.after(this._syncUIChild, this, "syncUI");
20 Y.after(this._bindUIChild, this, "bindUI");
344 * This method is invoked after bindUI is invoked for the Widget class
360 * This method is invoked after bindUI is invoked for the Widget class
367 this.after("selectedChange", this._afterChildSelectedChange);
/yui3/build/button-plugin/
H A Dbutton-plugin-debug.js60 Y.Do.after(this._afterNodeGet, node, 'get', this);
61 Y.Do.after(this._afterNodeSet, node, 'set', this);

Completed in 129 milliseconds

12345678