Delete row without showing modal confirmation form
Delete row without showing modal confirmation form
dynasoft
Posts: 446Questions: 69Answers: 3
Hi
I'm trying to use
table3.row( ':eq(0)' ).delete();
How can I avoid editor from showing the confirmation box when deleting (not just removing from table). Thanks.
This discussion has been closed.
Answers
Ended up using editor3.remove( ':eq(0)', false ).submit(). Thanks.