in want to access RadCombo1.selected value in Radcombo2.Itemrequested Event with out any client script
for Preformace ,how to set integral heigt to rad combo
Thanks
Harin
1 Answer, 1 is accepted
0
Dimitar Terziev
Telerik team
answered on 16 May 2011, 01:30 PM
Hello Harin,
In general when ItemsRequested event is fire a callback to the server is made. In the event handler function you could access only properties of the control which has fired the event, in your case the second RadComboBox.
Since the request to the server is made with a callback, the information from the other controls on the page is not sent to the server and thus you can't access their properties.
You could pass information to the server-side event handler function, if you initiate a request for items with the client-side requestItemsmethod, but since you don't want client-side code this is not an option for you.