[WC-3441] DG2: export column enhancements#2287
Open
yordan-st wants to merge 4 commits into
Open
Conversation
6696f2e to
39c37d2
Compare
This comment has been minimized.
This comment has been minimized.
39c37d2 to
96a5c83
Compare
This comment has been minimized.
This comment has been minimized.
iobuhov
previously approved these changes
Jun 23, 2026
c94f30c to
adc9e02
Compare
This comment has been minimized.
This comment has been minimized.
adc9e02 to
1e6e1fd
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull request type
Bug fix (non-breaking change which fixes an issue)
Description
When export type is set to "Default" for attribute columns, the exported Excel cells now use the attribute's own formatting (number decimals/grouping, date pattern) instead of exporting raw values without formatting.
For numbers, the exported cell mirrors what the grid shows: Mendix Decimal attributes do not expose a fixed decimal precision at runtime (only whether digits are grouped), so the format uses up to 8 fractional digits with trailing zeros suppressed. This keeps
1234.56as1234.56,0.5as0.5, and integers as integers — instead of collapsing to whole numbers.Also hides the export type and format properties in Studio Pro for dynamic text columns, since they have no effect.
What should be covered while testing?
1234.56stays1234.56,0.5stays0.5, integers stay integers; thousands grouping applied when the attribute uses it). Excel format:#,##0.########(grouped) or0.########(ungrouped).dd/MM/yyyy→ exported cell should have Excel formatdd/mm/yyyy