Search code examples
c#asp.netcheckboxtelerik-grid

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)


Solution

  • 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>