Hey,
I tried to play around with the new Toolbar inside the Grid.
From the documentation I copied:
<kendo-grid[data]="gridData"
[selectable]="false"
(selectionChange)="onRowSelected()"
[filterable]="true"
>
<kendo-toolbar overflow="scroll">
<kendo-toolbar-button kendoGridFilterTool></kendo-toolbar-button>
<kendo-toolbar-button kendoGridSortTool></kendo-toolbar-button>
<kendo-toolbar-button kendoGridGroupTool></kendo-toolbar-button>
<kendo-toolbar-separator></kendo-toolbar-separator>
<kendo-toolbar-button kendoGridColumnChooserTool></kendo-toolbar-button>
<kendo-toolbar-spacer></kendo-toolbar-spacer>
<kendo-toolbar-button kendoGridPDFTool></kendo-toolbar-button>
<kendo-toolbar-button kendoGridExcelTool></kendo-toolbar-button>
</kendo-toolbar>
...
Sadly, I can't seem to get the first three directives (kendoGridFilterTool, kendoGridSortTool, kendoGridGroupTool) to work.
I'm in Webstorm which tells me: "Attribute kendoGridFilterTool is not allowed here".
Am I missing an import or something?
Please help.