Create a JSON with updated data from table
Create a JSON with updated data from table
http://live.datatables.net/foleluxe/1/edit?html,output
When the inputs get changed i update row's cells values with javascript.
I need to send the new data to a database using JSON.
When i call dataTable.columns().data() i get old values instead of the updated ones.
How can i get the new data?
I guess i have to update some shadow state of dataTable but i can't understand how.
Thanks
This discussion has been closed.
Replies
You would need to get
cell().node(), and then get the value of that node.It would be worth looking at Editor, as it's designed to make updating tables very straightforward - please see this inline editing example.
Colin
Thanks for the asnwer colin.
Do you by any chance know why i get a different value from the one shown ?
No, that should always work - as you're just accessing an element in the DOM,
Colin