I would like to confirm the row deletion event on the client side, I can't figure out how to do this with the WebDataGrid.
If the delete key is pressed, I would like to confirm the deletion...if confirmed continue, if not how do I cancel the event also?
This seems so trivial yet I can not find any examples of it with the new WebDataGrid. All examples use the old UltraWebGrid which had different events.
Thanks, that is all I needed to get me on the right area...
<ig:EditingCore> <EditingClientEvents RowsDeleting="verify_delete" /> <Behaviors> <ig:RowDeleting /> </Behaviors></ig:EditingCore>
and to cancel...
e.set_cancel(true);
Hi,
I can't check the exact syntax right now but you can capture the rowsdeleting event off of editingcore and cancel the delete that way.
Ed