Hi Dimo,
Thank you for your responsive. I did actually use the both HeaderHtmlAttributes and HtmlAttributes on the columns. It was still showing taking up the space for the columns. Any other thoughts?
Html.Kendo().Grid(ModelHere)
.Name("GridNameHere")
.Columns(columns =>
{
columns.Bound(l => l.col1).Title("Col 1").HeaderHtmlAttributes(new { @class = "hidden-xs" }).HtmlAttributes(new { @class = "hidden-xs" });
columns.Bound(l => l.col2).Title("Col 2").HeaderHtmlAttributes(new { @class = "hidden-xs" }).HtmlAttributes(new { @class = "hidden-xs" });
})
.HtmlAttributes(new { style = "height: 300px;" })
.Scrollable()
.DataSource(dataSource => dataSource
.Ajax()
.ServerOperation(false)
)
.Render();