Reputation: 13
I made a grid with checkbox. I can only select one value at the time but I want to select more. How can I select more values at the time in a checkbox? (I am using a telerik:radgrid)
Upvotes: 0
Views: 81
Reputation: 1635
Try this code :
AllowMultiRowSelection="True"
<telerik:RadGrid RenderMode="Lightweight" ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1" AllowMultiRowSelection="True">
<ClientSettings>
<Selecting AllowRowSelect="true" EnableDragToSelectRows="true" />
</ClientSettings>
</telerik:RadGrid>
Upvotes: 1