Action Strip は 1 つ以上のアクションのテンプレート領域を提供します。
IgxActionStripModule
igx-action-strip-theme
action, strip, actionStrip, pinning, editing
データ入力 & 表示
IgxGridComponent, IgxTreeGridComponent, IgxHierarchicalGridComponent, IgxRowIslandComponent, *
Ignite UI Action Strip は、その親コンテナーをオーバーレイするコンテナーであり、 ストリップがインスタンス化または表示される親コンポーネントに適用可能なアクションを含むアクション ボタンを表示します。
<igx-action-strip #actionStrip> <igx-icon (click)="doSomeAction()"></igx-icon></igx-action-strip Copy
<igx-action-strip #actionStrip> <igx-icon (click)="doSomeAction()"></igx-icon></igx-action-strip
Action Strip のコンテキストを設定します。 コンテキストは、要素プロパティを持つ @Component のインスタンスである必要があります。 この要素は Action Strip のプレースホルダーになります。
<igx-action-strip [context]="cell"></igx-action-strip> Copy
<igx-action-strip [context]="cell"></igx-action-strip>
アクション ストリップの表示/非表示を取得/設定します。 アクション ストリップを最初に非表示にするかどうかの設定に使用できます。
<igx-action-strip [hidden]="false"> Copy
<igx-action-strip [hidden]="false">
リソース文字列を取得または設定します。
デフォルトで EN リソースを使用します。
Action Strip を非表示にし、現在のコンテキスト要素から削除します。
this.actionStrip.hide(); Copy
this.actionStrip.hide();
Action Strip を表示し、指定したコンテキスト要素に追加します。
this.actionStrip.show(row); Copy
this.actionStrip.show(row);
Action Strip は 1 つ以上のアクションのテンプレート領域を提供します。
Igx Module
IgxActionStripModule
Igx Theme
igx-action-strip-theme
Igx Keywords
action, strip, actionStrip, pinning, editing
Igx Group
データ入力 & 表示
Igx Parent
IgxGridComponent, IgxTreeGridComponent, IgxHierarchicalGridComponent, IgxRowIslandComponent, *
備考
Ignite UI Action Strip は、その親コンテナーをオーバーレイするコンテナーであり、 ストリップがインスタンス化または表示される親コンポーネントに適用可能なアクションを含むアクション ボタンを表示します。
例