is it possible to have CRUD without editor
is it possible to have CRUD without editor
Sidharthan
Posts: 2Questions: 1Answers: 0
is it possible to have CRUD without editor
This discussion has been closed.
Replies
Of course you can.
Use
table.row.add({ "headerA" : "A", "headerB" : "B" }).draw()
to create a new row.Use
table.row($('tr-element')).data({ "headerA" : "A", "headerB" : "B" }).draw()
to edit a row.Use
table.row($('tr-element')).remove().draw()
to remove a row from the table.Yup - that's basically all Editor is doing under the hood. It is using the publicly available API!
Allan