Action Strip provides templatable area for one or more actions.

Igx Module
IgxActionStripModule
Igx Theme
igx-action-strip-theme
Igx Keywords
action, strip, actionStrip, pinning, editing
Igx Group
Data Entry & Display

Remarks

[object Object]

Example

<igx-action-strip #actionStrip>
    <igx-icon (click)="doSomeAction()"></igx-icon>
</igx-action-strip>

IgxActionStripComponent

new IgxActionStripComponent(): IgxActionStripComponent

Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:210

Returns IgxActionStripComponent

Sets the context of an action strip. The context should be an instance of a @Component, that has element property. This element will be the placeholder of the action strip.

context: any

Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:117

Example

<igx-action-strip [context]="cell"></igx-action-strip>

Gets/Sets the visibility of the Action Strip. Could be used to set if the Action Strip will be initially hidden.

hidden: boolean = true

Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:152

Example

<igx-action-strip [hidden]="false">

Gets/Sets the resource strings.

set resourceStrings(value: IActionStripResourceStrings): void

Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:162

Parameters

Returns void

Hiding the Action Strip and removing it from its current context element.

hide(): void

Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:319

Returns void

Example

this.actionStrip.hide();

Showing the Action Strip and appending it the specified context element.

show(context: any): void

Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:295

Parameters

  • context: any

Returns void

Example

this.actionStrip.show(row);