Question

I am using Dev Express to develop a project and using Dev express Gridview Control, in that Gridview ,I used GridViewCommandColumn with <EditButton> and <DeleteButton>

but I don't know which event is firing when I click those button, can anyone give a hint?

Was it helpful?

Solution

Multiple events are fired in both cases. Click on Delete button will fire RowDeleting and RowDeleted events. Edit will fire StartRowEditing and CellEditorInitialize. Since both buttons initiate callback, many other events will be fired also. This is a list of ASPxGridView events. You should at least read short description of every one of them. Also, take a look at DevEx grid demos, especially this one.

If this doesn't help you should describe what are you trying to achieve in more details.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top