Created
June 27, 2017 20:55
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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