Hi,
Telerik.Web.UI v2013.3.1015.40
I have a simple usage scenario for a RadComboBox:
This allows the user to select multiple products by using the checkboxes. The problem is, it also allows the user to check the default '-- Select --' item that I have added as it also shows a checkbox, and there seems to be no 'ShowCheckbox' property on RadComboBoxItem that I can toggle.
How can I remove the checkbox on my first item in the RadComboBox?
Thanks.
Telerik.Web.UI v2013.3.1015.40
I have a simple usage scenario for a RadComboBox:
<telerik:RadComboBox ID="cbProducts" runat="server" Width="250px" DataSourceID="dsProducts" DataTextField="ProductName" DataValueField="ProductID" AppendDataBoundItems="true" CheckBoxes="True" onitemchecked="dlProducts_ItemChecked" AutoPostBack="true"> <Items> <telerik:radcomboboxitem Text="-- Select --" Value="" /> </Items> </telerik:RadComboBox>This allows the user to select multiple products by using the checkboxes. The problem is, it also allows the user to check the default '-- Select --' item that I have added as it also shows a checkbox, and there seems to be no 'ShowCheckbox' property on RadComboBoxItem that I can toggle.
How can I remove the checkbox on my first item in the RadComboBox?
Thanks.