The function _fnSetCellData(oSettings, iRow, iCol, val) in jquery.dataTables.js ver 1.9.4 makes use of oCol without checking if it is undefined:
On one occasion, I got an error reported by Firebug and hence, I changed this to:
Did I do the right thing here?
Regards,
Ashish.
oCol.fnSetData( oData, val );
On one occasion, I got an error reported by Firebug and hence, I changed this to:
if (oCol != undefined) { oCol.fnSetData( oData, val ); }
Did I do the right thing here?
Regards,
Ashish.