MCPcopy Create free account
hub / github.com/blockstrap/framework / _fnSetCellData

Function _fnSetCellData

blockstrap/js/dependencies/tables.js:1089–1095  ·  view source on GitHub ↗

* Set the value for a specific cell, into the internal data cache * @param {object} oSettings dataTables settings object * @param {int} iRow aoData row id * @param {int} iCol Column index * @param {*} val Value to set * @memberof DataTable#oApi

( oSettings, iRow, iCol, val )

Source from the content-addressed store, hash-verified

1087 * @memberof DataTable#oApi
1088 */
1089 function _fnSetCellData( oSettings, iRow, iCol, val )
1090 {
1091 var oCol = oSettings.aoColumns[iCol];
1092 var oData = oSettings.aoData[iRow]._aData;
1093
1094 oCol.fnSetData( oData, val );
1095 }
1096
1097
1098 // Private variable that is used to match action syntax in the data property object

Callers 2

_fnAddDataFunction · 0.85
tables.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected