delete row
delete row
firatkucuk
Posts: 4Questions: 0Answers: 0
Hi,
fnDeleteRow doesn't delete data from aoData.
fnDeleteRow with third optional (is null) parameter makes related row of aoData null.
and i get an an exception after calling getNodes function.
shouldn't fnDeleteRow delete the releated data?
fnDeleteRow doesn't delete data from aoData.
fnDeleteRow with third optional (is null) parameter makes related row of aoData null.
and i get an an exception after calling getNodes function.
shouldn't fnDeleteRow delete the releated data?
This discussion has been closed.
Replies
[code]
var data = alarmTable.dataTableSettings[0].aoData;
var pos = alarmTable.fnGetPosition(this);
alarmTable.fnDeleteRow(this);
delete data[pos];
[/code]
but after that fnAddData throw exception.
And should delete the data because of ram usage.
Regards,
Allan
It's much more better now.