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?

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top