Right now only one checkbox can be checked and then the DDL closes so it must be opened to check or uncheck something else
Is there some way to tell the DDL not to close while scrolling up and down and checking/unchecking items? Only close when the parent DDL is clicked.
This possible ?
<telerik:GridTemplateColumn HeaderText="Team Assingments" UniqueName="AssignmentTree" >
<EditItemTemplate >
<telerik:RadComboBox
Width="200px"
Skin="Outlook"
ID="rtcombo"
runat="server" DataSource='<%#Eval("Assignments") %>'
OnItemDataBound="ComboItemBind" AppendDataBoundItems="true">
<ItemTemplate>
<asp:CheckBox CssClass="stndTextSmall" ID="cbAssignment" runat="server" />
</ItemTemplate>
</telerik:RadComboBox>
</EditItemTemplate>
</telerik:GridTemplateColumn>