Hi Dimo
I am doing a default collapsed grouping on grid load using dataBound.
using below codes:
.Group(g => { g.Add(c => c.FacilityName); g.Add(c => c.Description); })
function onDataBound(e) {
var grid = this;
if (grid.dataSource.group().length > 0) {
$(".k-grouping-row").each(function () {
grid.collapseGroup(this);
});
}
}
The code you provided for hiding group column is not working if i include it in the above function. how can i get rid of grouping column in this case?
In the attached file i would like to get rid of both facility Name and description column grouping width.
Thanks
Raj