Skip to content

Commit fc4261d

Browse files
committed
[add] minor docs updates and what's new for v9.2.3
1 parent d58ff31 commit fc4261d

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

docs/grid/api/gridcolumn_properties/gridcolumn_header_property.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ header: [
3737
multiselection?: boolean,
3838
readonly?: boolean,
3939
placeholder?: string,
40-
virtual?: boolean,
40+
virtual?: boolean, // true by default
4141
template?: function
4242
},
4343
customFilter?: (item, input: string) => boolean,
@@ -79,7 +79,7 @@ Each header object may include:
7979
<td><a href="../../../configuration/#headerfooter-filters"><b>content</b></a></td><td>(optional) additional content of a header, which can be one of the filters: "inputFilter" | "selectFilter" | "comboFilter"</td>
8080
</tr>
8181
<tr>
82-
<td><a href="../../../configuration/#headerfooter-filters"><b>filterConfig</b></a></td><td>(optional) a configuration object for <b>"comboFilter"</b>. It can contain a set of properties:<ul><li><b>filter</b> - (optional) sets a custom function for filtering Combo Box options</li><li><b>multiselection</b> - (optional) enables selection of multiple options</li><li><b>readonly</b> - (optional) makes ComboBox readonly (it is only possible to select options from the list, without entering words in the input). The default value of the <b>readonly</b> property depends on the following conditions:<ul><li>the `readonly:true` is set as a default value, if `htmlEnable:true` is set for a column and there is no template specified for a column</li><li>in all other cases, `readonly:false` is set by default</li></ul></li><li><b>placeholder</b> - (optional) sets a placeholder in the input of ComboBox</li><li><b>virtual</b> - (optional) enables dynamic loading of data on scrolling the list of options</li><li><b>template</b> - (optional) a function which returns a template with content for the filter options. Takes an option item as a parameter:<ul><li><b>item</b> - (object) an option item</li></ul></li></ul></td>
82+
<td><a href="../../../configuration/#headerfooter-filters"><b>filterConfig</b></a></td><td>(optional) a configuration object for <b>"comboFilter"</b>. It can contain a set of properties:<ul><li><b>filter</b> - (optional) sets a custom function for filtering Combo Box options</li><li><b>multiselection</b> - (optional) enables selection of multiple options</li><li><b>readonly</b> - (optional) makes ComboBox readonly (it is only possible to select options from the list, without entering words in the input). The default value of the <b>readonly</b> property depends on the following conditions:<ul><li>the `readonly:true` is set as a default value, if `htmlEnable:true` is set for a column and there is no template specified for a column</li><li>in all other cases, `readonly:false` is set by default</li></ul></li><li><b>placeholder</b> - (optional) sets a placeholder in the input of ComboBox</li><li><b>virtual</b> - (optional) enables dynamic loading of data on scrolling the list of options, <i>true</i> by default</li><li><b>template</b> - (optional) a function which returns a template with content for the filter options. Takes an option item as a parameter:<ul><li><b>item</b> - (object) an option item</li></ul></li></ul></td>
8383
</tr>
8484
<tr>
8585
<td><a href="../../../configuration/#customizing-headerfooter-filters"><b>customFilter</b></a> </td><td>(optional) a custom function for extended filtering. It takes two parameters:<ul><li><b>item</b> - (required) a data item the value of which should be compared</li><li> <b>input</b> - (required) the value of the option selected in the filter</li></ul>and returns <i>true/false</i> to specify whether the data item should be displayed in the grid after filtering</td>

docs/grid/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1438,7 +1438,7 @@ const grid = new dhx.Grid("grid_container", {
14381438
- the `readonly:true` is set as a default value, if `htmlEnable:true` is set for a column and there is no template specified for a column
14391439
- in all other cases, `readonly:false` is set by default
14401440
- **placeholder** - (*string*) sets a placeholder in the input of ComboBox
1441-
- **virtual** - (*boolean*) enables dynamic loading of data on scrolling the list of options
1441+
- **virtual** - (*boolean*) enables dynamic loading of data on scrolling the list of options, *true* by default
14421442
- **template** - (*function*) a function which returns a template with content for the filter options. Takes an option item as a parameter
14431443

14441444
#### Customizing header/footer filters

docs/whatsnew.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@ 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.3
12+
13+
Released on October 21, 2025
14+
15+
### Fixes
16+
17+
- Grid. Performance issues caused by using `comboFilter` in the Grid header while a large dataset is loaded
18+
- Grid. The issue with the "combobox" editor not closing on pressing the "Enter" button
19+
1120
## Version 9.2.2
1221

1322
Released on October 1, 2025

0 commit comments

Comments
 (0)