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:208
Returns IgxActionStripComponent
Properties
Section titled "Properties"cdr: ChangeDetectorRef Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:100
context
Section titled "context"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:115
Example
<igx-action-strip [context]="cell"></igx-action-strip> hidden
Section titled "hidden"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:150
Example
<igx-action-strip [hidden]="false"> resourceStrings
Section titled "resourceStrings"resourceStrings: IActionStripResourceStrings Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:160, projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:164
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:317
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:293
Parameters
- context:
any
Returns void
Example
this.actionStrip.show(row);