Skip to content

Commit b16f894

Browse files
committed
[add] what's new and docs' updates for v9.2.6
1 parent c4d740e commit b16f894

File tree

6 files changed

+44
-3
lines changed

6 files changed

+44
-3
lines changed

docs/grid/api/grid_subrow_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) pac
1313
@short: Optional. Defines the sub-row content for each row of the main Grid
1414

1515
:::note
16-
Note that when the `subRow` config is used, Grid doesn't support the [TreeGrid mode](grid/treegrid_mode.md) and the [data grouping](grid/usage.md#grouping-data) functionality.
16+
Note that when the `subRow` config is used, Grid doesn't support the [TreeGrid mode](grid/treegrid_mode.md), except for the [data grouping](grid/usage.md#grouping-data) functionality.
1717
:::
1818

1919
@signature: {'subRow?: (row: IRow) => string | IViewConstructor;'}

docs/grid/api/grid_subrowconfig_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) pac
1313
@short: Optional. Specifies the configuration settings of a sub-row
1414

1515
:::note
16-
Note that when the [`subRow`](/grid/api/grid_subrow_config/) config is used, Grid doesn't support the [TreeGrid mode](grid/treegrid_mode.md) and the [data grouping](grid/usage.md#grouping-data) functionality.
16+
Note that when the [`subRow`](/grid/api/grid_subrow_config/) config is used, Grid doesn't support the [TreeGrid mode](grid/treegrid_mode.md), except for the [data grouping](grid/usage.md#grouping-data) functionality.
1717
:::
1818

1919
@signature: {'subRowConfig?: ((row: IRow) => ISubRowConfig) | ISubRowConfig;'}

docs/grid/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2046,7 +2046,7 @@ This functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) pac
20462046
In order to enable the row expander feature, you should use the [`subRow`](grid/api/grid_subrow_config.md) configuration option. It defines the content of sub-rows for each row of the Grid. The `subRow` property is a callback function which is called with the row object as a parameter and should return an HTML string or the constructor of a Suite component (Grid, Chart, Form, DataView, etc.).
20472047
20482048
:::note
2049-
Note that when the `subRow` config is used, Grid doesn't support the [TreeGrid mode](grid/treegrid_mode.md) and the [data grouping](grid/usage.md#grouping-data) functionality.
2049+
Note that when the `subRow` config is used, Grid doesn't support the [TreeGrid mode](grid/treegrid_mode.md), except for the [data grouping](grid/usage.md#grouping-data) functionality.
20502050
:::
20512051

20522052
Check the example of using a sub-row with an HTML content:
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
sidebar_label: navigationType
3+
title: JavaScript Sidebar - navigationType Config
4+
description: You can explore the navigationType config of Sidebar in the documentation of the DHTMLX JavaScript UI library. Browse developer guides and API reference, try out code examples and live demos, and download a free 30-day evaluation version of DHTMLX Suite.
5+
---
6+
7+
# navigationType
8+
9+
@short: Optional. Defines the action that opens sidebar options
10+
11+
@signature: {'navigationType?: "click" | "pointer";'}
12+
13+
@default: "pointer"
14+
15+
:::info
16+
- `"click"` - displays the sidebar when a user clicks on it
17+
- `"pointer"` - displays the sidebar when a user hovers the mouse pointer over it
18+
:::
19+
20+
@example:
21+
const sidebar = new dhx.Sidebar("sidebar_container", {
22+
navigationType: "click"
23+
});
24+
25+
@descr:

docs/whatsnew.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,21 @@ description: You can explore what's new in DHTMLX Suite and its release history
88

99
Before updating DHTMLX to the latest version, please check the [Migration to Newer Versions](migration.md) guide to avoid possible breakdowns.
1010

11+
## Version 9.2.6
12+
13+
Released on January 13, 2026
14+
15+
### Fixes
16+
17+
- Dataview, Grid, List. The issue with the functionality of the `beforeAdd` event during drag-n-drop
18+
- Grid. The ability to enable grouping in Grid with `subrow` is fixed
19+
- Grid. The ability to group a non-existent column without actual grouping is fixed
20+
- Grid. The `comboFilter` not updating the options on adding new items or editing the existing ones
21+
- Grid. Incorrect behavior of the `comboFilter` with enabled multiselection
22+
- Grid. The issue with the custom scroll being duplicated by the system scroll in Firefox on Windows 11
23+
- Grid. On grouping by a column with options, export to CSV/XLSX outputs the option's id instead of the displayed option's value
24+
- Sidebar. The functionality of the `navigationType` configuration option is fixed
25+
1126
## Version 9.2.5
1227

1328
Released on November 28, 2025

sidebars.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3904,6 +3904,7 @@ module.exports = {
39043904
"sidebar/api/sidebar_data_config",
39053905
"sidebar/api/sidebar_menucss_config",
39063906
"sidebar/api/sidebar_minwidth_config",
3907+
"sidebar/api/sidebar_navigationtype_config",
39073908
"sidebar/api/sidebar_width_config",
39083909
],
39093910
},

0 commit comments

Comments
 (0)