Skip to content

Instantly share code, notes, and snippets.

@Warr1611
Created June 27, 2017 20:55
Show Gist options
  • Save Warr1611/2ec6c24e91f745836a5c7af14416b2e5 to your computer and use it in GitHub Desktop.
Save Warr1611/2ec6c24e91f745836a5c7af14416b2e5 to your computer and use it in GitHub Desktop.
[Kendo Grid Settings] Kendo grid settings for sort, filter, resize, reorder, group, column menu. #kendo #grid
.Sortable()
.Filterable()
.Resizable(r => r.Columns(true))
.Reorderable(r => r.Columns(true))
.Groupable()
.ColumnMenu() // This gives the drop down menu on columns.
// In order to get the Multi-select list on a column menu, that specific column has to be setup with Multi(true), like this:
// columns.Bound(c => c.ColumnName).Filterable(f => f.Multi(true));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment