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

[add] a note on using root id for treegrid/tree in a sub-row #59

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
31 changes: 31 additions & 0 deletions docs/grid/api/grid_subrow_config.md
Original file line number Diff line number Diff line change
@@ -60,6 +60,37 @@ const grid = new dhx.Grid("grid_container", {
});
~~~

:::info
For Grid (in the TreeGrid mode) or Tree used in a sub-row it is important to specify the id of the root element to link data to the corresponding collection:
- by using the [`rootParent`](grid/api/grid_rootparent_config.md) property for Grid in the TreeGrid mode
- by using the [`rootId`](tree/api/tree_rootid_config.md) property for Tree
:::

For example:

~~~jsx {8,16}
grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
data: dataset,
subRow: (row) => {
subGrid = new dhx.Grid(null, {
rootParent: "root", // Add the root id
columns: [
{ id: "country", header: [{ text: "Country" }] },
{ id: "order_quantity", header: [{ text: "Orders" }], type: "number" },
{ id: "average_check", header: [{ text: "Avg check" }], type: "number" },
],
data: row.data,
autoWidth: true,
type: "tree",
});
return subGrid;
},
});
~~~

**Related sample:** [Grid. Row expander. Full config](https://snippet.dhtmlx.com/xdw2037t)

**Related article:** [Row expander](grid/configuration.md#row-expander)
31 changes: 31 additions & 0 deletions docs/grid/configuration.md
Original file line number Diff line number Diff line change
@@ -1688,6 +1688,37 @@ const grid = new dhx.Grid("grid_container", {

**Related sample:** [Grid. Row expander. Full config](https://snippet.dhtmlx.com/xdw2037t)

:::info
For Grid (in the TreeGrid mode) or Tree used in a sub-row it is important to specify the id of the root element to link data to the corresponding collection:
- by using the [`rootParent`](grid/api/grid_rootparent_config.md) property for Grid in the TreeGrid mode
- by using the [`rootId`](tree/api/tree_rootid_config.md) property for Tree
:::

For example:

~~~jsx {8,16}
grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
data: dataset,
subRow: (row) => {
subGrid = new dhx.Grid(null, {
rootParent: "root", // Add the root id
columns: [
{ id: "country", header: [{ text: "Country" }] },
{ id: "order_quantity", header: [{ text: "Orders" }], type: "number" },
{ id: "average_check", header: [{ text: "Avg check" }], type: "number" },
],
data: row.data,
autoWidth: true,
type: "tree",
});
return subGrid;
},
});
~~~

### Adjusting configuration of sub-rows

You can define common configuration settings of all sub-rows or provide specific options for each sub-row via the [`subRowConfig`](grid/api/grid_subrowconfig_config.md) configuration property of Grid.