Here is my grid:
It's in a radwindow, so I need to be able to loop through the grid and compile a list of items where the checkbox is checked.
I saw the example where you can set it to postback on the check changed event, but I'd prefer not to have to rebuild the string and postback everytime something is checked.
Is there anyway to do a loop through in javascript?
Thanks.
<telerik:RadGrid runat="server" ID="radTableColumns" AutoGenerateColumns="false" AllowMultiRowSelection="true" > |
<ClientSettings> |
<Selecting AllowRowSelect="true" /> |
</ClientSettings> |
<MasterTableView> |
<Columns> |
<telerik:GridClientSelectColumn HeaderStyle-Width="40px" /> |
<telerik:GridBoundColumn DataField="column_name" HeaderText="Column Name" /> |
<telerik:GridBoundColumn DataField="column_type" HeaderText="Column Type" /> |
</Columns> |
</MasterTableView> |
</telerik:RadGrid> |
It's in a radwindow, so I need to be able to loop through the grid and compile a list of items where the checkbox is checked.
I saw the example where you can set it to postback on the check changed event, but I'd prefer not to have to rebuild the string and postback everytime something is checked.
Is there anyway to do a loop through in javascript?
Thanks.