I have been able to dynamically load some dropdown lists to be used during an inplace edit in the RadGrid. I do this within the ItemCreated event of the grid.
I also attach a SelectedIndexChange event to one of the dropdowns (call it dropdown "A"). I need to change the selected index of a different dropdown within the same row (call it dropdown "B") when the user changes the selected index in dropdown A.
The event fires and I can retrieve a new selected value in A, but now I'm at a loss as to how to retrieve the approiate dropdown B to alter it's selected index based on the value chosen in A. I don't have visiblity to a grid "item" from the SelectedIndexChanged event and the databound event doesn't seem to fire when dropdown A's event fires - so I can't get access to the grid item to do a FindControl on dropdown B. I have the AutoPostBack property of dropdown A set to "true".
Any suggestinons?
I also attach a SelectedIndexChange event to one of the dropdowns (call it dropdown "A"). I need to change the selected index of a different dropdown within the same row (call it dropdown "B") when the user changes the selected index in dropdown A.
The event fires and I can retrieve a new selected value in A, but now I'm at a loss as to how to retrieve the approiate dropdown B to alter it's selected index based on the value chosen in A. I don't have visiblity to a grid "item" from the SelectedIndexChanged event and the databound event doesn't seem to fire when dropdown A's event fires - so I can't get access to the grid item to do a FindControl on dropdown B. I have the AutoPostBack property of dropdown A set to "true".
Any suggestinons?