Hi,
Am trying to resize column on mvcgrid:
Heres mycode used:Still it does not want to resize
@Html.Grid(Model).Named("GridResizing").Columns(columns =>
{
columns.Add(c => c.DogName).Titled("Dog Name").SanitizeEnabled.ToString();
columns.Add(c => c.BreedName).Titled("Breed");
columns.Add(c => c.DogAge).Titled("Age");
columns.Add(c => c.DogOwner).Titled("Owner Name");
columns.Add(c => c.DogSurname).Titled("Surname");
columns.Add(c => c.DogColour).Titled("Coulour");
columns.Add(c => c.DogAddress).Titled("Address");
}).WithPaging(10).Sortable(true);
Thanks