GridModelgridModel = new GridModel { Data = myDataList, Total = myTotalCount, PageSize = 10, PageIndex = 1, Sort = "Name" };
GridModelIn this example, we again create a `GridModel` object with the same data and total count. However, we also add three `GridColumn` objects using the `Columns.Add()` method. We set the first column, `Id`, to be non-sortable using the `Sortable(false)` method. We set the second column, `Name`, to be sorted by default. Finally, we set the third column, `Description`, to have a custom title and a fixed width of 300 pixels. Package library: Telerik UI for ASP.NET MVC.gridModel = new GridModel { Data = myDataList, Total = myTotalCount }; gridModel.Columns.Add(c => c.Id).Sortable(false); gridModel.Columns.Add(c => c.Name); gridModel.Columns.Add(c => c.Description).Title("Description").Width(300);