I have a RadGrid that has a DataList inside of each row.
The DataList has checkboxes in them.
Example:
Let's say the grid has four rows, and the datalist inside each row has three rows itself.
When a user checks one of the checkboxes in the datalist, I need the same checkbox in the the other three rows with the same value to get checked. Would it be easier for me to do it client side or server side? Also, any help to achieve this would be great.
Here a sample of the code:
<
telerik:GridTemplateColumn
HeaderText
=
"Optional Languages"
HeaderStyle-Width
=
"100%"
ItemStyle-HorizontalAlign
=
"Left"
Groupable
=
"false"
>
<
ItemTemplate
>
<
asp:DataList
ID
=
"DataListl"
OnItemDataBound
=
"DataList1_ItemDataBound"
RepeatLayout
=
"Table"
Width
=
"100%"
ItemStyle-BorderStyle
=
"None"
runat
=
"server"
>
<
ItemTemplate
>
<
asp:CheckBox
ID
=
"CheckboxOptional1"
runat
=
"server"
/>
<
asp:Literal
ID
=
"LiteralOptional1"
Visible
=
"false"
runat
=
"server"
/>
</
ItemTemplate
>
</
asp:DataList
>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>