Unplanned
Last Updated: 03 Jun 2021 12:05 by ADMIN
P
Created on: 03 Apr 2018 09:46
Category: UI for ASP.NET MVC
Type: Feature Request
2
Grid Select Column visible based on an expresssion
In Kendo MVC Grid, the column of type Select() will be good if has an option to show/hide the checkbox in specific rows based on an expression. For example:
.Columns(columns =>
            {
                columns.Select().Visible(m => m.ShowSelect);
            })

Where "ShowSelect" is a property of my Model which is bound to the Grid.
0 comments