Hi,
I have telerik 2009 and I m binding combo box to database . i want the text of the input field of Telerik RadComboBox to be empty when the page is loaded . But the issue is I get the text value of the checkbox's first list item in the input field of Telerik RadComboBox.
<telerik:RadComboBox runat="server" ID="rcbLocation" HighlightTemplatedItems="true" DataTextField="Location" DataValueField="Location" Width="405px" AllowCustomText="false" >
<ItemTemplate>
<div onclick="StopPropagation(event)" >
<asp:CheckBox runat="server" ID="CheckBox1" onclick="checkboxClick(event);" />
<asp:Label runat="server" ID="Label1" AssociatedControlID="CheckBox1" Text='<%# DataBinder.Eval(Container, "DataItem.Location") %>' Font-Size="10pt" Width="88%" />
</div>
</ItemTemplate>
<CollapseAnimation Duration="200" Type="OutQuint" />
</telerik:RadComboBox>
Me.rcbLocation.DataTextField = "Location"
Me.rcbLocation.DataValueField = "Location"
Me.rcbLocation.DataBind()
Me.rcbLocation.Text=" "
I want to set the input field of Telerik RadComboBox to empty from server side..How can I do it ? Please let me know ..