Fix description of fnDataUpdate plug-in method.

pull/19/head
Allan Jardine 12 years ago
parent 1bc8d6cdcd
commit 9d8562e3c8

@ -1,8 +1,8 @@
/**
* Update the internal data for a TR element based on what is used in the
* DOM. You will likely want to call fnDraw() after this function.
* @name fnColumnIndexToVisible
* @anchor fnColumnIndexToVisible
* @name fnDataUpdate
* @anchor fnDataUpdate
* @author Lior Gerson
*
* @example
@ -12,7 +12,7 @@
$.fn.dataTableExt.oApi.fnDataUpdate = function ( oSettings, nRowObject, iRowIndex )
{
$(nRowObject).find("TD").each( function(i) {
var iColIndex = oSettings.oApi._fnVisibleToColumnIndex( oSettings, i );
oSettings.oApi._fnSetCellData( oSettings, iRowIndex, iColIndex, $(this).html() );
var iColIndex = oSettings.oApi._fnVisibleToColumnIndex( oSettings, i );
oSettings.oApi._fnSetCellData( oSettings, iRowIndex, iColIndex, $(this).html() );
} );
};

Loading…
Cancel
Save