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

New: cell set data API method

- New API call:
  - cell().data( set ) - Ability to set data for a single cell. Will
    invalidate the whole row.
This commit is contained in:
Allan Jardine 2013-05-19 08:47:33 +01:00
parent 1590f41525
commit 1894b96a42

View File

@ -89,7 +89,10 @@ _api.register( 'cell().data()', function ( data ) {
}
// Set
// @todo
_fnSetCellData( ctx[0], this[0].row, this[0].column, data );
_fnInvalidateRow( ctx[0], this[0].row, 'data' );
return this;
} );