Search code examples
devexpressaspxgridviewonrowclick

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


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


Solution

  • 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.