Toxic Pickle
Toxic Pickle

Reputation: 13

Grid Checkbox Select

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

Answers (1)

Rai Vu
Rai Vu

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

Related Questions