Grid Pinning Actions for the Action Strip

IgxGridPinningActionsComponent

new IgxGridPinningActionsComponent(): IgxGridPinningActionsComponent

Returns IgxGridPinningActionsComponent

Inherited from: IgxGridActionsBaseDirective

Gets/Sets if the action buttons will be rendered as menu items. When in menu, items will be rendered with text label.

asMenuItems: boolean = false

Defined in projects/igniteui-angular/grids/core/src/grid-actions/grid-actions-base.directive.ts:34

Example

<igx-grid-pinning-actions [asMenuItems]='true'></igx-grid-pinning-actions>
 <igx-grid-editing-actions [asMenuItems]='true'></igx-grid-editing-actions>

Pin the row according to the context.

pin(event: any): void

Defined in projects/igniteui-angular/grids/core/src/grid-actions/grid-pinning-actions.component.ts:88

Parameters

  • event: any

Returns void

Example

this.gridPinningActions.pin();
scrollToRow(event: any): void

Defined in projects/igniteui-angular/grids/core/src/grid-actions/grid-pinning-actions.component.ts:122

Parameters

  • event: any

Returns void

Unpin the row according to the context.

unpin(event: any): void

Defined in projects/igniteui-angular/grids/core/src/grid-actions/grid-pinning-actions.component.ts:109

Parameters

  • event: any

Returns void

Example

this.gridPinningActions.unpin();