{hero}

row().edit()

Since: Editor 1.5.0

Edit an existing row.
Please note - this property requires the Editor extension for DataTables.

Description

This method can be used to edit an existing record using the Editor main form. It is essentially a proxy for the edit() method, exposed through the DataTables API object with the row() selector being used to select the row to be edited.

The Editor instance used by this method is the last Editor instance create that refers to this table when the table was constructed. This consideration is only important when using multiple Editor instances!

Please note that this method only exposes one small part of Editor through the DataTables API. Editor has its own extensive API which provides complete control over the form.

Type

function row().edit( options )

Description:

Edit a DataTable row using the main Editor form.

Parameters:
Returns:

The original API instance, unmodified, is returned to allow chaining.

Examples

Edit the row clicked upon:

var myTable = $('#myTable').DataTable();

$('#myTable').on( 'click', 'tbody tr', function () {
    myTable.row( this ).edit();
} );

Edit the first row in the table - explicitly setting the form title:

var myTable = $('#myTable').DataTable();

myTable.row( ':eq(0)' ).edit( {
    title: 'Edit first row'
} );

Display the edit form with a cancel button:

var myTable = $('#myTable').DataTable();

$('#myTable').on( 'click', 'tbody tr', function () {
    myTable.row( this ).edit( {
        buttons: [
            { label: 'Cancel', fn: function () { this.close(); } },
            'Edit'
        ]
    } );
} );

Related

The following options are directly related and may also be useful in your application development.