I am using a RadComboBox with an ItemTemplate like this (to show checkboxes for each item):
I further need to implement a couple of linkbuttons in a single row at the top that will allow the user to select all or select none. Finally, the alternating grid lines would be a "nice-to-have". I've included a screenshot of the standards that I need to meet. Step two in that graphic is about where I need to be when the user drops down the combo.
Any help would be appreciated. Thanks.
<
ItemTemplate
>
<
asp:CheckBox
runat
=
"server"
ID
=
"chk1"
/>
<
asp:Label
runat
=
"server"
ID
=
"lbllist"
AssociatedControlID
=
"chk1"
Text='<%# Eval("ComputerName") %>'></
asp:Label
>
</
ItemTemplate
>
I further need to implement a couple of linkbuttons in a single row at the top that will allow the user to select all or select none. Finally, the alternating grid lines would be a "nice-to-have". I've included a screenshot of the standards that I need to meet. Step two in that graphic is about where I need to be when the user drops down the combo.
Any help would be appreciated. Thanks.