idekkers
idekkers

Reputation: 233

selecting which columns are displayed in the kendo angular grid

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

Answers (1)

topalkata
topalkata

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

Related Questions