New to Kendo UI for Angular? Start a free 30-day trial
GridNavigableSection
Represents the possible navigable sections of the Grid (see example).
The available values are:
pager
— Includes the Grid pager and its internal elements.table
— Includes the Grid table and its internal elements.toolbar
— Includes the Grid toolbars and the group panel when the Grid is groupable.
html
<kendo-grid [navigable]="['pager', 'toolbar']"></kendo-grid>
type
GridNavigableSection = "pager" | "table" | "toolbar";