Lines Matching refs:event

32     * Fires when a Widget is add as a child.  The event object will have a 
37 * Subscribers to the "on" moment of this event, will be notified
41 * Subscribers to the "after" moment of this event, will be notified
45 * @event addChild
56 * Fires when a child Widget is removed. The event object will have a
60 * Subscribers to the "on" moment of this event, will be notified
64 * Subscribers to the "after" moment of this event, will be notified
68 * @event removeChild
220 * Destroy event listener for each child Widget, responsible for removing
226 * @param {EventFacade} event The event facade for the attribute change.
228 _afterDestroyChild: function (event) {
229 var child = event.target;
243 * @param {EventFacade} event The event facade for the attribute change.
245 _afterSelectionChange: function (event) {
247 if (event.target == this && event.src != this) {
249 var selection = event.newVal,
280 * @param {EventFacade} event The event facade for the attribute change.
282 _afterActiveDescendantChange: function (event) {
286 parent._set("activeDescendant", event.newVal);
298 * @param {EventFacade} event The event facade for the attribute change.
300 _afterParentSelectedChange: function (event) {
302 var value = event.newVal;
304 if (this == event.target && event.src != this &&
372 * @param {EventFacade} event The event facade for the attribute change.
374 _updateSelection: function (event) {
376 var child = event.target,
381 if (event.src != "_updateSelection") {
385 if (!this.get("multiple") && selection && event.newVal > 0) {
399 if (event.src == this) {
414 * @param {EventFacade} event The event facade for the attribute change.
416 _updateActiveDescendant: function (event) {
417 var activeDescendant = (event.newVal === true) ? event.target : null;
469 * @param event {EventFacade} The Event object
475 _defAddChildFn: function (event) {
477 var child = event.child,
478 index = event.index,
496 // (e.g. user passed in 10, and there are only 3 items, the actual index would be 3. We don't want to pass 10 around in the event facade).
497 event.index = child.get("index");
499 // TO DO: Remove in favor of using event bubbling
509 * @param event {EventFacade} The Event object
514 _defRemoveChildFn: function (event) {
516 var child = event.child,
517 index = event.index,
773 _afterAddChild: function (event) {
774 var child = event.child;
781 _afterRemoveChild: function (event) {
782 var child = event.child;