クラス IgxActionStripComponent

Action Strip は 1 つ以上のアクションのテンプレート領域を提供します。

Igx Module

IgxActionStripModule

Igx Theme

igx-action-strip-theme

Igx Keywords

action, strip, actionStrip, pinning, editing

Igx Group

データ入力と表示

Remarks

Ignite UI Action Strip は、その親コンテナーをオーバーレイするコンテナーであり、ストリップがインスタンス化または表示される親コンポーネントに適用可能なアクションを含むアクション ボタンを表示します。

Example

<igx-action-strip #actionStrip>
<igx-icon (click)="注意事項omeAction()"></igx-icon>
</igx-action-strip>

階層

Hierarchy

  • DisplayDensityBase
    • IgxActionStripComponent

実装

  • AfterContentInit
  • AfterViewInit

コンストラクタ

プロパティ

アクセサー

メソッド

コンストラクタ

プロパティ

context: any

Action Strip のコンテキストを設定します。 コンテキストは、要素プロパティを持つ @Component のインスタンスである必要があります。 この要素は Action Strip のプレースホルダーになります。

Example

<igx-action-strip [context]="cell"></igx-action-strip>
densityChanged: EventEmitter<IDensityChangedEventArgs> = ...

アクセサー

メソッド

  • Action Strip を表示し、指定したコンテキスト要素に追加します。

    Example

    this.actionStrip.show(row);
    

    パラメーター

    • オプション context: any

      Action Strip を表示し、指定したコンテキスト要素に追加します。

    返却 void