Lines Matching refs:message
2 Adds support for a message container to appear in the table. This can be used
7 @submodule datatable-message
15 Adds support for a message container to appear in the table. This can be used
31 prevent the message Node from being created and `showMessage` from doing
57 Hides the message node.
66 this.getClassName('message', 'visible'));
72 Display the message node and set its content to `message`. If there is a
73 localized `strings` entry for the value of `message`, that string will be
77 @param {String} message The message name or message itself to display
82 showMessage: function (message) {
83 var content = this.getString(message) || message;
92 '.' + this.getClassName('message', 'content'))
96 this.getClassName('message','visible'));
99 // If no message provided, remove the message node.
123 '.' + this.getClassName('message', 'content'));
132 Relays to `_uiSetMessage` to hide or show the message node.
144 Removes the message node if `showMessages` is `false`, or relays to
157 this.getClassName('message', 'visible'));
165 Binds the events necessary to keep the message node in sync with the current
183 Merges in the message related strings and hooks into the rendering cycle to
184 also render and bind the message node.
213 className: this.getClassName('message'),
214 contentClass: this.getClassName('message', 'content'),
232 Y.Intl.get('datatable-message')));
246 Synchronizes the message UI with the table state.
262 triggering event has a `message` property on the EventFacade, it will be
273 this.showMessage((e && e.message) || 'emptyMessage');