Hi
I'm creating a grid where I'd like to be able to delete a row client-side and have the delete command sent to the server using AJAX. What I did was to add a GridClientDeleteColumn to the grid, set AllowAutomaticDeletes=true on the MasterTableView and hook the RowDeleting client event. However when I click the Delete link nothing happens. The event isn't raised and the row isn't removed. I'm using client-side data binding through a web-service.
If I instead create a button column and set the command name to Delete, the Command event is fired correctly (but with no reference to the row in question). So apparently the command system is working, and if I place a breakpoint in the onclick of the Delete link emitted by the GridClientDeleteColumn I can see that it is called, but returns false before reaching my event handler.
Any ideas?
I'll try to recreate the problem in a smaller example, and post my finding, but wanted to post the question in case anyone had experienced similar problems.
/kim