I have used the Grid component with the select functionality and was wondering if I can somehow disable the select all checkbox in the header but still be able to select multiple rows of the grid. Is this possible?
1 Answer, 1 is accepted
1
Accepted
Konstantin Dikov
Telerik team
answered on 08 Nov 2021, 10:36 AM
Hi Bernd,
For achieving the desired result you can either handle the "headerCellRender" and return empty TD element for the select column or provide a custom headerCell directly.
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
Thanks. The <td></td> doesn't work because I get the error that a <td> can't be a child of a <th>. But if I exchange the <td></td> with a <span></span> it works. :-)
Thanks anyway for letting me know about the approach. That's really usefull information.