I am using the standard buttons.
buttons: [
{ extend: "create", editor: editorQuotes },
{ extend: "edit", editor: editorQuotes },
{ extend: "remove", editor: editorQuotes }
]
editorQuotes.on( 'create', function ( e, json, data ) {
alert( 'New row added' );
} );
I am able to edit / add /remove.
But the datatable does not refresh when I insert add a new row.
Do I have to manualy call it ?
The create event above is not called.
Cheers
Steve Warby