I have a AspxGridView which is linked to a DataSource. Below the GridView there are some textBoxes which should be populated on a selection changed event. How can I achieve that? Maybe with a callback panel and the clientSide SelectionChanged to fires a custom callback or … ? Or maybe the SelectionChange isn’t the appropriate event? I can see that in the gridview there are Begin and EndCallback on the client sides but when are they actually executed?
Share
You can do this:
1. Place your text boxes inside
ASPxCallbackPanel2. Set callback panel
ClientInstanceNameto e.g.callbackPanel13. On
ASPxGridViewclient side selection changed event call callbackPanel1.PerformCallback4. Set text boxes values in ASPxCallbackPanel.Callback event handler
The Concept of Callbacks knowledge base article is mandatory reading.