¿How to handle OnRowClick event of ASPxGridView Devexpress server-side?

565 Views Asked by At

This is my gridview code. So the events OnFocusedRowChanged and OnSelectionChanged doesn't work and i don't know how can i do this work, i need your help people

enter image description here

1

There are 1 best solutions below

1
On BEST ANSWER

Refer these:
ASPxGridView - The server-side SelectionChanged is not fired
ASPxGridView - How to process the SelectionChanged event on the server side

By default, the ASPxGridView processes change of selection only on the client-side. If you wish the server-side ASPxGridView.SelectionChanged to be fired, set the ASPxGridView.SettingsBehavior.ProcessSelectionChangedOnServer property to true or handle the client-side ASPxClientGridView.SelectionChanged event and set the processOnServer property to True in this event handler.