fnDeleteRow
fnDeleteRow
mickotaf
Posts: 2Questions: 0Answers: 0
I have a table.
Each row can be deleted with a button.
When the row is delete the the table is reDraw, and that's working.
But when there is one line there or on the last deleted row is an error :
............................................................................
aoData is undefined
http://mysite/js/jquery/jquery.dataTables.js
Line 2970
...................................................
I Use the last version 1.7.4
Thanks too help me.
[code]
$("#tableServiceBilled tr").bind("save_success", function()
{
//$(this).remove();
$myTable.fnDeleteRow($(this));
}
);
[/code]
Each row can be deleted with a button.
When the row is delete the the table is reDraw, and that's working.
But when there is one line there or on the last deleted row is an error :
............................................................................
aoData is undefined
http://mysite/js/jquery/jquery.dataTables.js
Line 2970
...................................................
I Use the last version 1.7.4
Thanks too help me.
[code]
$("#tableServiceBilled tr").bind("save_success", function()
{
//$(this).remove();
$myTable.fnDeleteRow($(this));
}
);
[/code]
This discussion has been closed.
Replies
Allan