I'm Sick BOY
I'm Sick BOY

Reputation: 3

¿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

Upvotes: 0

Views: 664

Answers (1)

Niranjan Singh
Niranjan Singh

Reputation: 18260

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.

Upvotes: 0

Related Questions