fnOpen : Problem after updating row.
fnOpen : Problem after updating row.
I have a Scenario where in, I expand the row using fnOpen and show editable form.As soon as I update it I close it and modify the datatable using fnUpdate.
oTable.fnOpen( nTr, fnFormatDetails(oTable, nTr), 'details' );
.
.
.
.
btnUpdateDatatable() {
//to update datatable
oTable.fnClose( nTrOriginal );
oTable.fnUpdate( [aData[0],param1,param2,param3], nTrOriginal );
}
The problem is updated row is not getting expanded then after.
when I try to expand the row doesn't expand .
oTable.fnOpen( nTr, fnFormatDetails(oTable, nTr), 'details' );
.
.
.
.
btnUpdateDatatable() {
//to update datatable
oTable.fnClose( nTrOriginal );
oTable.fnUpdate( [aData[0],param1,param2,param3], nTrOriginal );
}
The problem is updated row is not getting expanded then after.
when I try to expand the row doesn't expand .
This discussion has been closed.