0
You could use styles:
@grid.GetHtml(columns: grid.Columns(
grid.Column("Name", "Name", canSort: true, style: "name"),
grid.Column("Address", "Address", canSort: true, style: "address")
));
and in your CSS file:
.name {
width: 50px;
}
.address {
width: 300px;
}
Refer the following link
https://stackoverflow.com/questions/9357786/apply-specific-width-in-column-of-webgrid-in-mvc3