≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
When building a table with aaData, how do I repopulate from a new JavaScript object.
When building a table with aaData, how do I repopulate from a new JavaScript object.
mikerobi
Posts: 3
Questions: 0
Answers: 0
November 2011
edited November 2011
in
General
I am having a hard time figuring out how to repopulate the table from a new JavaScript object.
Replies
allan
Posts: 65,843
Questions: 1
Answers: 10,953
Site admin
November 2011
[code]
oTable.fnClearTable(); // nuke the old data
oTable.fnAddData( newData ); // add new data
[/code]
:-)
Allan
This discussion has been closed.
Replies
oTable.fnClearTable(); // nuke the old data
oTable.fnAddData( newData ); // add new data
[/code]
:-)
Allan