Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/grid/api/grid_subrow_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) pac
@short: Optional. Defines the sub-row content for each row of the main Grid

:::note
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.
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.
:::

@signature: {'subRow?: (row: IRow) => string | IViewConstructor;'}
Expand Down
2 changes: 1 addition & 1 deletion docs/grid/api/grid_subrowconfig_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) pac
@short: Optional. Specifies the configuration settings of a sub-row

:::note
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.
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.
:::

@signature: {'subRowConfig?: ((row: IRow) => ISubRowConfig) | ISubRowConfig;'}
Expand Down
2 changes: 1 addition & 1 deletion docs/grid/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -2046,7 +2046,7 @@ This functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) pac
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.).

:::note
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.
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.
:::

Check the example of using a sub-row with an HTML content:
Expand Down
25 changes: 25 additions & 0 deletions docs/sidebar/api/sidebar_navigationtype_config.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
sidebar_label: navigationType
title: JavaScript Sidebar - navigationType Config
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.
---

# navigationType

@short: Optional. Defines the action that opens sidebar options

@signature: {'navigationType?: "click" | "pointer";'}

@default: "pointer"

:::info
- `"click"` - displays the sidebar when a user clicks on it
- `"pointer"` - displays the sidebar when a user hovers the mouse pointer over it
:::

@example:
const sidebar = new dhx.Sidebar("sidebar_container", {
navigationType: "click"
});

@descr:
15 changes: 15 additions & 0 deletions docs/whatsnew.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,21 @@ description: You can explore what's new in DHTMLX Suite and its release history

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

## Version 9.2.6

Released on January 13, 2026

### Fixes

- Dataview, Grid, List. The issue with the functionality of the `beforeAdd` event during drag-n-drop
- Grid. The ability to enable grouping in Grid with `subrow` is fixed
- Grid. The ability to group a non-existent column without actual grouping is fixed
- Grid. The `comboFilter` not updating the options on adding new items or editing the existing ones
- Grid. Incorrect behavior of the `comboFilter` with enabled multiselection
- Grid. The issue with the custom scroll being duplicated by the system scroll in Firefox on Windows 11
- Grid. On grouping by a column with options, export to CSV/XLSX outputs the option's id instead of the displayed option's value
- Sidebar. The functionality of the `navigationType` configuration option is fixed

## Version 9.2.5

Released on November 28, 2025
Expand Down
1 change: 1 addition & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -3904,6 +3904,7 @@ module.exports = {
"sidebar/api/sidebar_data_config",
"sidebar/api/sidebar_menucss_config",
"sidebar/api/sidebar_minwidth_config",
"sidebar/api/sidebar_navigationtype_config",
"sidebar/api/sidebar_width_config",
],
},
Expand Down
Loading