This is a migrated thread and some comments may be shown as answers.

SelectedValue of RadComboBox is not updated

0 Answers 61 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
abasi
Top achievements
Rank 1
abasi asked on 06 Jan 2011, 06:02 PM
I have a RadComboBox inside a RadXmlHttpPanel.In the ServiceRequest method i set the selectedvalue of the combobox to a new value but the selectedvalue is not updated.

<telerik:RadXmlHttpPanel ID="mainRadXmlHttpPanel" runat="server" OnServiceRequest="main_ServiceRequest"
  RenderMode="Block" LoadingPanelID="RadAjaxLoadingPanel1" EnableClientScriptEvaluation="true"                     Width="117%">
<telerik:RadComboBox ID="mainShipCb" runat="server" Width="150px"> </telerik:RadComboBox>                                        
 </telerik:RadXmlHttpPanel>

CodeBehind :
protected void main_ServiceRequest(object sender, RadXmlHttpPanelEventArgs e)
   {
        mainShipCb.SelectedValue = "Some Value";
 
   }

No answers yet. Maybe you can help?

Tags
ComboBox
Asked by
abasi
Top achievements
Rank 1
Share this question
or