1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-01-18 11:52:11 +01:00

Docs: Event docs in the new XML format for the web-site

This commit is contained in:
Allan Jardine 2013-11-12 19:17:31 +00:00
parent a287b560b8
commit d389c6d348
2 changed files with 7 additions and 7 deletions

View File

@ -1 +1 @@
0b8811d4462acaf212d632ffa880a736b9c2c231
77db4a8ce08e1936aac7f4d18e6bab4491e4d92d

View File

@ -13680,7 +13680,7 @@
/**
* Filter event, fired when the filtering applied to the table (using the
* build in global global filter, or column filters) is altered.
* built-in global filter, or column filters) is altered.
* @name DataTable#filter
* @event
* @param {event} e jQuery event object
@ -13716,7 +13716,7 @@
/**
* State save event, fired when the table has changed state a new state save
* is required. This method allows modification of the state saving object
* is required. This event allows modification of the state saving object
* prior to actually doing the save, including addition or other state
* properties (for plug-ins) or modification of a DataTables core property.
* @name DataTable#stateSaveParams
@ -13750,7 +13750,7 @@
/**
* Processing event, fired when DataTables is doing some kind of processing
* (be it, sort, filter or anything else). Can be used to indicate to the
* (be it, sort, filter or anything else). It can be used to indicate to the
* end user that there is something happening, or that something has
* finished.
* @name DataTable#processing
@ -13777,13 +13777,13 @@
*
* @example
* // Use a custom property returned from the server in another DOM element
* $('#table').dataTable().on('xhr', function (settings, json) {
* $('#table').dataTable().on('xhr', function (e, settings, json) {
* $('#status').html( json.status );
* } );
*
* @example
* // Pre-process the data returned from the server
* $('#table').dataTable().on('xhr', function (settings, json) {
* $('#table').dataTable().on('xhr', function (e, settings, json) {
* for ( var i=0, ien=json.aaData.length ; i<ien ; i++ ) {
* json.aaData[i].sum = json.aaData[i].one + json.aaData[i].two;
* }
@ -13820,7 +13820,7 @@
*/
/**
* Column visibility has changes.
* Column visibility has changed.
* @name DataTable#column-visibility
* @event
* @param {event} e jQuery event object