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.
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