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
Example
<igx-action-strip #actionStrip>
<igx-icon (click)="doSomeAction()"></igx-icon>
</igx-action-strip> Constructors
Section titled "Constructors"IgxActionStripComponent
new IgxActionStripComponent(): IgxActionStripComponent Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:239
Returns IgxActionStripComponent
Properties
Section titled "Properties"cdr: ChangeDetectorRef Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:107
Accessors
Section titled "Accessors"context
Section titled "context"get context(): any Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:126
Returns any
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.
set context(value: any): void Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:122
Example
<igx-action-strip [context]="cell"></igx-action-strip> Parameters
- value:
any
Returns void
hidden
Section titled "hidden"get hidden(): boolean Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:167
Returns boolean
Gets/Sets the visibility of the Action Strip. Could be used to set if the Action Strip will be initially hidden.
set hidden(value: boolean): void Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:163
Example
<igx-action-strip [hidden]="false"> Parameters
- value:
boolean
Returns void
resourceStrings
Section titled "resourceStrings"get resourceStrings(): IActionStripResourceStrings Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:183
Returns IActionStripResourceStrings
Gets/Sets the resource strings.
set resourceStrings(value: IActionStripResourceStrings): void Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:179
Parameters
- value:
IActionStripResourceStrings
Returns void
Methods
Section titled "Methods"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:348
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:324
Parameters
- context:
any
Returns void
Example
this.actionStrip.show(row);