Kendo UI for MVC Grid How do I hide the ID column
问题 I would like to hide the ID column of a Kendo grid but still be able to reference it for other actions. I tried making the Width = 0 but that only makes it really wide. @(Html.Kendo().Grid(Model) .Name("LineItems") .Columns(columns => { columns.Bound(o => o.ID).Width(1); columns.Bound(o => o.Ui).Width(20); columns.Bound(o => o.QtyOrdered).Width(20); columns.Bound(o => o.Nomenclature).Width(200); columns.Bound(o => o.QtyShipped).Width(140); columns.Bound(o => o.QtyReceived).Width(200); columns