Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(state-persistence): remove groupBy feature for treeGrid #6053

Open
wants to merge 2 commits into
base: vnext
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion en/components/grids_templates/state-persistence.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ _canonicalLink: grid/state-persistence
## Supported Features
[`IgxGridState`]({environment:angularApiUrl}/classes/igxgridstatedirective.html) directive supports saving and restoring the state of the following features:

@@if (igxName !== 'IgxHierarchicalGrid' && igxName !== 'IgxPivotGrid') {
@@if (igxName === 'IgxGrid') {

* `Sorting`
* `Filtering`
Expand All @@ -57,6 +57,24 @@ _canonicalLink: grid/state-persistence
* Columns templates and functions are restored using application level code, see [Restoring Column](state-persistence.md#restoring-columns) section.
}

@@if (igxName === 'IgxTreeGrid') {

* `Sorting`
* `Filtering`
* `Advanced Filtering`
* `Paging`
* `Cell Selection`
* `Row Selection`
* `Column Selection`
* `Row Pinning`
* `Expansion`
* `Columns`
* **NEW**: Multi column headers are now supported out of the box
* Columns order
* Column properties defined by the [`IColumnState`]({environment:angularApiUrl}/interfaces/icolumnstate.html) interface.
* Columns templates and functions are restored using application level code, see [Restoring Column](state-persistence.md#restoring-columns) section.
}

@@if (igxName === 'IgxHierarchicalGrid') {
* `RowIslands`
* saving/restoring features for all child grids down the hierarchy
Expand Down
20 changes: 19 additions & 1 deletion jp/components/grids_templates/state-persistence.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ igxGridState ディレクティブによって開発者がグリッドの状態
## サポートされている機能
[`IgxGridState`]({environment:angularApiUrl}/classes/igxgridstatedirective.html) ディレクティブは、以下の機能の状態の保存および復元をサポートします。

@@if (igxName !== 'IgxHierarchicalGrid' && igxName !== 'IgxPivotGrid') {
@@if (igxName === 'IgxGrid') {

* `ソート`
* `フィルタリング`
Expand All @@ -61,6 +61,24 @@ igxGridState ディレクティブによって開発者がグリッドの状態
* 列テンプレートおよび関数はアプリケーション レベルのコードを使用して復元されます。[列の復元](state-persistence.md#列の復元)セクションを参照してください。
}

@@if (igxName === 'IgxTreeGrid') {

* `ソート`
* `フィルタリング`
* `高度なフィルタリング`
* `ページング`
* `セルの選択`
* `行の選択`
* `列の選択`
* `行のピン固定`
* `展開`
* `複数の列`
* **新規**: 複数列ヘッダーが標準でサポートされるようになりました。
* 列の順序
* [`IColumnState`]({environment:angularApiUrl}/interfaces/icolumnstate.html) インターフェイスによって定義される列プロパティ。
* 列テンプレートおよび関数はアプリケーション レベルのコードを使用して復元されます。[列の復元](state-persistence.md#列の復元)セクションを参照してください。
}

@@if (igxName === 'IgxHierarchicalGrid') {
* `行アイランド`
* 階層のすべての子グリッドの保存/復元機能
Expand Down