Lines Matching refs:message

1 YUI.add('datatable-message', function(Y) {
4 Adds support for a message container to appear in the table. This can be used
9 @submodule datatable-message
17 Adds support for a message container to appear in the table. This can be used
33 prevent the message Node from being created and `showMessage` from doing
59 Hides the message node.
68 this.getClassName('message', 'visible'));
74 Display the message node and set its content to `message`. If there is a
75 localized `strings` entry for the value of `message`, that string will be
79 @param {String} message The message name or message itself to display
84 showMessage: function (message) {
85 var content = this.getString(message) || message;
94 '.' + this.getClassName('message', 'content'))
98 this.getClassName('message','visible'));
101 // If no message provided, remove the message node.
125 '.' + this.getClassName('message', 'content'));
134 Relays to `_uiSetMessage` to hide or show the message node.
146 Removes the message node if `showMessages` is `false`, or relays to
159 this.getClassName('message', 'visible'));
167 Binds the events necessary to keep the message node in sync with the current
185 Merges in the message related strings and hooks into the rendering cycle to
186 also render and bind the message node.
215 className: this.getClassName('message'),
216 contentClass: this.getClassName('message', 'content'),
234 Y.Intl.get('datatable-message')));
248 Synchronizes the message UI with the table state.
264 triggering event has a `message` property on the EventFacade, it will be
275 this.showMessage((e && e.message) || 'emptyMessage');