I have a RadGrid with two GridTemplateColumn columns, each of which contains a RadcomboBox within the EditItemTemplate.
I am trying to configure page method-based auto-complete for each combobox. The first will contain two items (say, "Colors" and "Numbers") and the second will ask a page method for a list of items that are relevant for what was selected in the first combobox; e.g., if the user selects "Colors" from the first combobox, he may only select a color from the second combobox. Likewise, if he instead selects "Numbers" from the first list, he can only select numbers from the second list. The page method used by the second combobox takes a parameter which is the value of the selection from the first combobox.
For the second combobox, I am attempting to use the ClientItemsRequesting event handler to set the value of the parameter to the page method a la http://trappedinhoth.blogspot.com/2008/05/telerik-radcombobox-auto-complete.html.
The ClientItemsRequesting event handler gives me the sender, which is the second combobox. From that, how do I get the value of the first combobox?
Thanks