domTable
The DataTable that Editor will operate on. Deprecated - use table.
Please note - this property requires the Editor extension for DataTables.
Deprecated!
As of v1.3 this feature has been deprecated. This feature has not yet been scheduled for removal, but its use is discouraged and the alternatives discussed below should be used.
As of Editor 1.3 this parameter has been renamed table for simplicity. The new parameter also offers additional options such as being able to use a DataTables API instance, node or jQuery object to identify an object.
Editor 1.3 does still support this parameter in the same way as Editor 1.2 and earlier for backwards compatibility, but it is recommended you use the newer method suggested above particularly in new scripts.
Description
jQuery selector that can be used to identify the table you wish to apply this editor instance to.
Type
This option can be given in the following type(s):
Example
Deprecated domTable option:
var editor = new DataTable.Editor({
ajax: 'php/staff.php',
domTable: '#myTable'
});