Skip to content

Commit 00208d2

Browse files
authored
Data Widgets v3.8.0: Update changelog (#2032)
2 parents b84ea9c + 82508d2 commit 00208d2

File tree

24 files changed

+90
-26
lines changed

24 files changed

+90
-26
lines changed

packages/modules/data-widgets/CHANGELOG.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,66 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [3.8.0] DataWidgets - 2026-01-16
10+
911
### Fixed
1012

1113
- We fixed an issue where custom content would overflow its container cell.
1214

15+
### [3.8.0] DatagridDateFilter
16+
17+
#### Fixed
18+
19+
- We fixed an issue with background-color styles on hover in date picker.
20+
21+
### [3.8.0] Datagrid
22+
23+
#### Fixed
24+
25+
- We fixed an issue where the footer would take up unnecessary spacing when no content was rendered inside.
26+
27+
- The property panel now shows keep selection property when Datagrid is set to single selection.
28+
29+
#### Changed
30+
31+
- We improved virtual scrolling behavior when horizontal scrolling is present due to grid size.
32+
33+
#### Added
34+
35+
- We added missing Dutch translations for Datagrid 2.
36+
37+
- We added a new property for export to excel. The new property allows to set the cell export type and also the format for type number and date.
38+
39+
- We have introduced the "Page" and "Page Size" attributes to provide complete control over DataGrid pagination.
40+
41+
- We added support for custom pagination controls at the bottom of the DataGrid. Now you can design your own pagination buttons.
42+
43+
- We added the possibility to configure the first row of a DataGrid to be auto-selected on first load, facilitating master-detail views.
44+
45+
### [3.8.0] Gallery
46+
47+
#### Fixed
48+
49+
- We fixed an issue where the footer would take up unnecessary spacing when no content was rendered inside.
50+
51+
- We fixed an issue where the row count wasn't displayed when "Virtual scroll" is on.
52+
53+
#### Added
54+
55+
- We added missing dutch translations for Gallery.
56+
57+
- We added a refresh interval property, to allow defining an interval (in seconds) for refreshing the content in Gallery
58+
59+
### [3.8.0] TreeNode
60+
61+
#### Changed
62+
63+
- We changed `hasChildren` configuration from boolean to expression.
64+
65+
#### Fixed
66+
67+
- We fixed an issue where Tree Nodes showing loading spinner when children can't be found while `hasChildren` property configured to `true`.
68+
1369
## [3.7.0] DataWidgets - 2025-11-11
1470

1571
### Changed

packages/modules/data-widgets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/data-widgets",
33
"moduleName": "Data Widgets",
4-
"version": "3.7.0",
4+
"version": "3.8.0",
55
"description": "Data Widgets module containing a set of widgets to display data in various ways.",
66
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
77
"license": "Apache-2.0",

packages/pluggableWidgets/datagrid-date-filter-web/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [3.8.0] - 2026-01-16
10+
911
### Fixed
1012

1113
- We fixed an issue with background-color styles on hover in date picker.

packages/pluggableWidgets/datagrid-date-filter-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/datagrid-date-filter-web",
33
"widgetName": "DatagridDateFilter",
4-
"version": "3.7.0",
4+
"version": "3.8.0",
55
"description": "Filter Data Grid 2 rows by date or date range, using a calendar picker.",
66
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
77
"license": "Apache-2.0",

packages/pluggableWidgets/datagrid-date-filter-web/src/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="DatagridDateFilter" version="3.7.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="DatagridDateFilter" version="3.8.0" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="DatagridDateFilter.xml" />
66
</widgetFiles>

packages/pluggableWidgets/datagrid-dropdown-filter-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/datagrid-dropdown-filter-web",
33
"widgetName": "DatagridDropdownFilter",
4-
"version": "3.7.0",
4+
"version": "3.8.0",
55
"description": "Filter Data Grid 2 rows by selecting values from a drop-down list.",
66
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
77
"license": "Apache-2.0",

packages/pluggableWidgets/datagrid-dropdown-filter-web/src/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="DatagridDropdownFilter" version="3.7.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="DatagridDropdownFilter" version="3.8.0" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="DatagridDropdownFilter.xml" />
66
</widgetFiles>

packages/pluggableWidgets/datagrid-number-filter-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/datagrid-number-filter-web",
33
"widgetName": "DatagridNumberFilter",
4-
"version": "3.7.0",
4+
"version": "3.8.0",
55
"description": "Filter Data Grid 2 rows by numeric values, supporting equals, greater than, and less than operations.",
66
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
77
"license": "Apache-2.0",

packages/pluggableWidgets/datagrid-number-filter-web/src/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="DatagridNumberFilter" version="3.7.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="DatagridNumberFilter" version="3.8.0" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="DatagridNumberFilter.xml" />
66
</widgetFiles>

packages/pluggableWidgets/datagrid-text-filter-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/datagrid-text-filter-web",
33
"widgetName": "DatagridTextFilter",
4-
"version": "3.7.0",
4+
"version": "3.8.0",
55
"description": "Filter Data Grid 2 rows by text input, supporting contains, starts with, and equals operations.",
66
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
77
"license": "Apache-2.0",

0 commit comments

Comments
 (0)