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:210
Returns IgxActionStripComponent
Properties
Section titled "Properties"cdr: ChangeDetectorRef Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:102
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:117
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:152
Example
<igx-action-strip [hidden]="false"> Accessors
Section titled "Accessors"resourceStrings
Section titled "resourceStrings"get resourceStrings(): IActionStripResourceStrings Defined in projects/igniteui-angular/action-strip/src/action-strip/action-strip.component.ts:166
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:162
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: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);