Open GoogleCodeExporter opened 9 years ago
I've got version 2.3.3.
In the definition of the function fnSetDisplayStart() remove comments from the
"if" block:
if (oSettings.oFeatures.bServerSide === false) {
...
}
There is another defect: if you do row update from the ajax popup form, the app
refreshes the table <number of columns in the form> times. It doesn't make
sense in case of server side processing. To fix it, alter the definition of the
function fnUpdateRowOnSuccess(nActionForm) as follows.
Add line:
var bRefreshTable = !oSettings.oFeatures.bServerSide;
Add that variable as the fourth argument to the fnUpdate() call:
oTable.fnUpdate(sCellValue, iRowID, rel, bRefreshTable);
Original comment by dzz.m...@gmail.com
on 13 Mar 2013 at 12:20
Original issue reported on code.google.com by
distinct...@googlemail.com
on 23 Aug 2012 at 11:14