Hi,
I want to disallow user from keying text in the combo box which contains checkbox. Because this will cause error to happen.
The error message is as below:

I have try to set AllowCustomText="false" but it seems that it do not take action when there is checkbox inside the combobox.
Below is is my sample code
Does anyone has any idea? Help Please!!
I want to disallow user from keying text in the combo box which contains checkbox. Because this will cause error to happen.
The error message is as below:
I have try to set AllowCustomText="false" but it seems that it do not take action when there is checkbox inside the combobox.
Below is is my sample code
<ajax:RadComboBox ID="DdlProject" runat="server" Width="240px" EnableLoadOnDemand="True" Text=" " AllowCustomText="false" EnableVirtualScrolling="true" EnableAutomaticLoadOnDemand="true"> <ItemTemplate> <asp:CheckBox runat="server" ID="chkProject" oncheckedchanged="chk_CheckedChangedProject" AutoPostBack="true" Text='<%#Eval("ProjectName")%>' /> </ItemTemplate> </ajax:RadComboBox>dsProject = getGetProject(mstrCompNo) DdlProject.DataSource = dsProject DdlProject.DataTextField = "ProjectId" DdlProject.DataValueField = "ProjectName" DdlProject.DataBind()Does anyone has any idea? Help Please!!