React Tree Grid サイズ
Ignite UI for React の React Tree Grid サイズ機能を使用すると、ユーザーは IgrTreeGrid
内のデータの間隔とレイアウトを制御できます。--ig-size
を変更することで、大量のコンテンツを操作するときのユーザー エクスペリエンスを大幅に向上させることができます。次の 3 つのサイズ オプションから選択できます。
--ig-size-large
--ig-size-medium
--ig-size-small
React Tree Grid サイズの例
使用方法
上記デモで示されるように、IgrTreeGrid
は 3 つのサイズ オプション (small、medium、large) を提供します。以下のコード スニペットは、--ig-size
をインラインまたは CSS クラスの一部として設定する方法を示しています。
.gridSize {
--ig-size: var(--ig-size-medium);
}
<IgrTreeGrid id="grid" className="gridSize">
</IgrTreeGrid>
各オプションを IgrTreeGrid
に反映する方法を紹介します。サイズ オプション間で切り替える際に各 IgrTreeGrid
要素の高さとそのパディングが変更されます。カスタムの列 width
を適用する場合、左右のパディングより大きくする必要があることに注意してください。
- large - これはデフォルトの
IgrTreeGrid
サイズです。サイズが最も低く、行の高さが50px
です。左と右のパディングが24px
で最小列width
は80px
です。 - medium - 中サイズで、行の高さは
40px
です。左と右のパディングが16px
で最小列width
は64px
です。 - small - 強度が最も高く、行の高さは
32px
です。左と右のパディングが12px
で最小列width
は56px
です。
[!Note] 現在サイズはオーバーライドできません。
引き続きサンプルを使用して、--ig-size
の適用方法について説明します。最初に各サイズを切り替えるボタンを追加します。
<IgrPropertyEditorPanel
ref={propertyEditorRef}
componentRenderer={renderer}
target={grid}
descriptionType="WebTreeGrid"
isHorizontal="true"
isWrappingEnabled="true">
<IgrPropertyEditorPropertyDescription
name="SizeEditor"
label="Grid Size:"
valueType="EnumValue"
dropDownNames={["Small", "Medium", "Large"]}
dropDownValues={["Small", "Medium", "Large"]}
changed={this.webGridSetGridSize}>
</IgrPropertyEditorPropertyDescription>
</IgrPropertyEditorPanel>
マークアップを追加します。
<IgrTreeGrid autoGenerate="false" ref={this.treeGridRef} id="grid" data={this.employeesFlatDetails} primaryKey="ID" foreignKey="ParentID" allowFiltering="true">
<IgrColumn field="Name" dataType="String" sortable="true" hasSummary="true" width="200"></IgrColumn>
<IgrColumnGroup header="General Information">
<IgrColumn field="HireDate" dataType="Date" sortable="true" hasSummary="true"></IgrColumn>
<IgrColumnGroup header="Personal Details">
<IgrColumn field="ID" dataType="Number" filterable="false"></IgrColumn>
<IgrColumn field="Title" dataType="String" sortable="true" hasSummary="true"></IgrColumn>
<IgrColumn field="Age" dataType="Number" sortable="true" hasSummary="true" filterable="false"></IgrColumn>
</IgrColumnGroup>
</IgrColumnGroup>
<IgrColumnGroup header="Address Information">
<IgrColumnGroup header="Location">
<IgrColumn field="Country" dataType="String" sortable="true" hasSummary="true"></IgrColumn>
<IgrColumn field="City" dataType="String" sortable="true" hasSummary="true"></IgrColumn>
<IgrColumn field="Address" dataType="String" sortable="true" hasSummary="true"></IgrColumn>
</IgrColumnGroup>
<IgrColumnGroup header="Contact Information">
<IgrColumn field="Phone" dataType="String" sortable="true" hasSummary="true"></IgrColumn>
<IgrColumn field="Fax" dataType="String" sortable="true" hasSummary="true"></IgrColumn>
<IgrColumn field="PostalCode" dataType="String" sortable="true" hasSummary="true"></IgrColumn>
</IgrColumnGroup>
</IgrColumnGroup>
</IgrTreeGrid>
最後にサイズを適用するためのロジックを実装します。
private propertyEditor: IgrPropertyEditorPanel
private propertyEditorRef(r: IgrPropertyEditorPanel) {
this.propertyEditor = r;
this.setState({});
}
private sizeEditor: IgrPropertyEditorPropertyDescription
private grid: IgrTreeGrid
private gridRef(r: IgrTreeGrid) {
this.grid = r;
this.setState({});
}
constructor(props: any) {
super(props);
this.propertyEditorRef = this.propertyEditorRef.bind(this);
this.webGridSetGridSize = this.webGridSetGridSize.bind(this);
this.gridRef = this.gridRef.bind(this);
}
private _componentRenderer: ComponentRenderer = null;
public get renderer(): ComponentRenderer {
if (this._componentRenderer == null) {
this._componentRenderer = new ComponentRenderer();
var context = this._componentRenderer.context;
PropertyEditorPanelDescriptionModule.register(context);
WebHierarchicalGridDescriptionModule.register(context);
}
return this._componentRenderer;
}
public webGridSetGridSize(sender: any, args: IgrPropertyEditorPropertyDescriptionChangedEventArgs): void {
var newVal = (args.newValue as string).toLowerCase();
var grid = document.getElementById("grid");
grid.style.setProperty('--ig-size', `var(--ig-size-${newVal})`);
}
IgrTreeGrid
の行の高さを変更するその他のオプションに rowHeight
プロパティがあります。このプロパティと --ig-size
プションが IgrTreeGrid
レイアウトにどのように動作に影響するかを以下で確認できます。
以下を確認してください。
rowHeight
を指定した場合、--ig-size
CSS 変数は行の高さに影響しません。--ig-size
は、上記の理由により残りすべての Tree Grid 要素に影響します。
サンプル機能を拡張して rowHeight
プロパティを IgrTreeGrid
に追加します。
<IgrTreeGrid id="grid" className="gridSize" rowHeight="80px" width="100%" height="550px" allowFiltering="true">
</IgrTreeGrid>
API リファレンス
コミュニティに参加して新しいアイデアをご提案ください。