简体   繁体   中英

Kendo UI Grid - Remove group column?

When enabling grouping on a KendoGrid, a blank column is automatically added that creates a sort of tab space for rows inside a group. See the example here: http://dojo.telerik.com/atiTi/3

Is there a clean way to remove this column so that both groups and rows are left aligned?

The simple way is to just add a style:

.k-group-cell {
    display: none;
}

You can do it with jquery as well:

http://www.telerik.com/forums/how-to-hide-grouping-column

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM