Hi Martin,
I have added the CSS mentioned by you, but that only solves the problem partially.
The grid Body is now showing auto column cell data, but the headers are still shrinked.
Additionally as suggested by you I have made FixedHeaders = false :
@(Html .Infragistics() .Grid<Measure>(measurements.AsQueryable()) .ID(“mGrid”).AutoGenerateColumns(true)
.FixedHeaders(false)
.Features(features => { features.Paging().PageSize(50).TotalRecordsCount(measurements.Count);
features.Resizing();
})
.Virtualization(true)
.VirtualizationMode(VirtualizationMode.Continuous)
.Height(“600px”)
.DataBind()
.Render() )
Please let me know if I am missing anything here.