Hi All,
I currently have a RadComboBox with an asp:Checkbox working as needed. (Code behind is responsible for adding checkboxes and their "labels". (See aspx Code below)
I now need to figure out how to implement this in a column in a RadGrid, and seem to be running into real challenges. ANY help on this would be much appreciated!
<
telerik:RadComboBox
runat
=
"server"
Width
=
"235px"
ID
=
"ddUsersSelector"
HighlightTemplatedItems
=
"true"
ClientIDMode
=
"Static"
EnableVirtualScrolling
=
"True"
Skin
=
"Default"
ToolTip
=
"Select Users"
MaxHeight
=
"200px"
>
<
ItemTemplate
>
<
asp:CheckBox
runat
=
"server"
dependency
=
"adduser"
ID
=
"UserCheckBox"
OnClick
=
"CheckBoxClick(this)"
Text
=
""
ClientIDMode
=
"Static"
/>
</
ItemTemplate
>
<
CollapseAnimation
Type
=
"OutQuint"
Duration
=
"200"
/>
</
telerik:RadComboBox
>