Edit datatable entries without using editor
Edit datatable entries without using editor

Is there any way to edit datatable entries without using editor plugin?
This discussion has been closed.
Is there any way to edit datatable entries without using editor plugin?
Replies
Sure - use whatever form you want. The DataTables API method to update a row's data is
row().data()
.Allan
Thanks Allan. I tried that. It is working now.
For making it work, I have changed
otable = $('#tablee').dataTable( { })
tootable = $('#tablee').DataTable( { })
- it is working perfectly.But there comes an another issue with fnDestroy(). It now shows
"TypeError: otable.fnDestroy is not a function".
Use
destroy()
if you are using the new API rather than the legacy one.Allan
Thanks alot Allan. It is working fine now :)