I have a radcombobox
From my code behind I try to select a value by
The only way I could get it to selected value to select an item is to turn off the
If these are set to true, then it wil not select any item.
<telerik:RadComboBox ID="cboReferring" runat="server" DataSourceID="dsReferringDocs" DataTextField="DisplayName" DataValueField="PCPID" Width="300px" ShowMoreResultsBox="true" ItemsPerRequest="10" AppendDataBoundItems="True" EnableVirtualScrolling="False" EnableAutomaticLoadOnDemand="False" EmptyMessage="Select a Referring Provider" TabIndex="12"> <Items> <telerik:RadComboBoxItem runat="server" Text="ED Admit No Doc" Value="0" /> </Items> </telerik:RadComboBox>From my code behind I try to select a value by
cboReferring.SelectedValue = coreData.Nz(dr("sReferringProviderNumber").ToString(), "")The only way I could get it to selected value to select an item is to turn off the
EnableVirtualScrolling="False" EnableAutomaticLoadOnDemand="False"If these are set to true, then it wil not select any item.