This question is locked. New answers and comments are not allowed.
Hi,
To reduce the width of a telerik MVC grid, I want to have one column that contains 3 bound fields. I have the following....
.Columns(columns =>
{
columns.Bound(o => o.Field1).Width(200);
columns.Bound(o => o.Field2).Width(200);
columns.Bound(o => o.Field3).Width(200);
columns.Bound(o => o.Field4).Width(200);
})
How can I get it so that Field1, Field2 & Field3 are on top of each other, so that the grid has just two columns, one containing the Field1, Field2 & Field3 and the other containing Field4?
To reduce the width of a telerik MVC grid, I want to have one column that contains 3 bound fields. I have the following....
.Columns(columns =>
{
columns.Bound(o => o.Field1).Width(200);
columns.Bound(o => o.Field2).Width(200);
columns.Bound(o => o.Field3).Width(200);
columns.Bound(o => o.Field4).Width(200);
})
How can I get it so that Field1, Field2 & Field3 are on top of each other, so that the grid has just two columns, one containing the Field1, Field2 & Field3 and the other containing Field4?