Reputation: 233
is there a standardized interface that comes with the grid for the user to select which columns to display? or is it an upcoming feature in the September release?
Upvotes: 0
Views: 448
Reputation: 2098
The visibility of the columns can be configured via the kendo-grid-column's hidden
property:
COLUMN FEATURES --> HIDDEN STATE
<kendo-grid-column
field="..."
[hidden]="true"
>...
Upvotes: 1