This is a migrated thread and some comments may be shown as answers.

Selectable

1 Answer 60 Views
Grid
This is a migrated thread and some comments may be shown as answers.
guo
Top achievements
Rank 1
guo asked on 31 May 2019, 05:22 AM

.Columns(columns =>
      {
          columns.Select().Width(50).Locked(true);

           ....

     }

      .Selectable(selectable => selectable
          .Mode(GridSelectionMode.Multiple)
          .Type(GridSelectionType.Cell))

 

error

1 Answer, 1 is accepted

Sort by
0
Alex Hajigeorgieva
Telerik team
answered on 04 Jun 2019, 01:58 PM
Hello, Guo,

The Kendo UI Grid for ASP.NET Core checkbox selection provides multiple selection of the rows. The grid's selectable property is a different functionality(multiple cell in your case) and it is mutually exclusive with the checkbox selection:

https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/columns.selectable

I tested the provided configuration and while no error is thrown, it is not a recommended configuration nonetheless. If you let us know what is the desired behaviour that you wish to achieve, we could suggest an alternative. 

For example, what would you expect to occur when the user clicks on the checkbox? Should the entire row be selected?

Look forward to hearing back from you.

Kind Regards,
Alex Hajigeorgieva
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Grid
Asked by
guo
Top achievements
Rank 1
Answers by
Alex Hajigeorgieva
Telerik team
Share this question
or