Rank: Member Groups: Member
Joined: 3/8/2011 Posts: 19
|
Hi I have 3 repeater(custom) columns in a grid. All 3 are interlinked like Category A, B and C. I require that when the item of the grid is focused column with category A should be databind the repeater with some db values, Once the user selects a value in category A, based on his selected value the category B repeater should be databind and whatever value he selects in category B, the category C repeater should be databind.
Is it possible and how.
Regards
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
This does have much to do with the Grid. All code would be inside your CustomColumn. If you do it on the server side, you would basically reload the Grid with the repeater updated when needed. If you do it on the client side, you would make whatever AJAX calls (that's up to you) to fetch the new data from the server side and update your UI elements accordingly. In either case the Grid is just a shell to host your cells.
Thanks
|