I am trying to implement new Batch Edit
functionality of RadGrid. I have a Radgrid with 2 columns both the columns are
TemplateColumns with RadComboBox in EditTemplate. I want to load data in a ComboBox (LoadOnDemand) in column b in the same row based on the Selected value of the Combobox in column a.
I did try to use onClientItemsRequsting to capture the selected value and saved it to the context object so that i can use it in ItemRequested event's filter property on the code behind. It works fine for the first time.
The issue is once the combobox is loaded it never hits ItemRequested again. So even if we change the selected value of the 1st combobox, the 2nd combobox values remains the same as it already has values and will not hit itemrequested on subsequent selections.
Can anyone help me with this scenario.
I did try to use onClientItemsRequsting to capture the selected value and saved it to the context object so that i can use it in ItemRequested event's filter property on the code behind. It works fine for the first time.
The issue is once the combobox is loaded it never hits ItemRequested again. So even if we change the selected value of the 1st combobox, the 2nd combobox values remains the same as it already has values and will not hit itemrequested on subsequent selections.
Can anyone help me with this scenario.