ColumnMenuPositionComponent
Component
Represents the column-menu item that combines lock and sticky column functionalities.
Place this component inside a ColumnMenuTemplate directive.
To register the component as a known column menu item, set the ColumnMenuService that the template passes to the service input of the kendo-grid-columnmenu-position component. See example.
Definition
Package:@progress/kendo-angular-grid
Selector:kendo-grid-columnmenu-position
Syntax:
html
<kendo-grid [data]="data" [columnMenu]="true" ...>
<ng-template kendoGridColumnMenuTemplate let-service="service" let-column="column">
<kendo-grid-columnmenu-position [service]="service" [showLock]="true" [showStick]="true">
</kendo-grid-columnmenu-position>
</ng-template>
</kendo-grid>Inputs
expanded
boolean
Specifies if the content is expanded.
Default:
false
Represents the ColumnMenuService class.
This input is required.
showLock
boolean
Specifies if the lock column item is shown.
showStick
boolean
Specifies if the stick column item is shown.
Events
collapse
EventEmitter<any>
Emits when the content collapses.
expand
EventEmitter<any>
Emits when the content expands.