-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIO-3703: Fixes an issue where NestedData components with modal view …
…do not render values inside Layout components in modal preview table (#5558) * FIO-3703: Fixes an issue where NestedData components with modal view do not render values inside Layout components in modal preview table * Fixed tests * Fixed typo * Update NestedDataComponent.unit.js
- Loading branch information
1 parent
b58c530
commit b27d9d2
Showing
4 changed files
with
84 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
54 changes: 54 additions & 0 deletions
54
test/forms/nestedDataWithModalViewAndLayoutComponents.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"name": "fio3703", | ||
"path": "fio3703", | ||
"type": "form", | ||
"display": "form", | ||
"components": [ | ||
{ | ||
"label": "Data Grid", | ||
"reorder": false, | ||
"addAnotherPosition": "bottom", | ||
"layoutFixed": false, | ||
"enableRowGroups": false, | ||
"initEmpty": false, | ||
"tableView": true, | ||
"modalEdit": true, | ||
"defaultValue": [ | ||
{ | ||
"textField": "" | ||
} | ||
], | ||
"key": "dataGrid", | ||
"type": "datagrid", | ||
"input": true, | ||
"components": [ | ||
{ | ||
"collapsible": false, | ||
"key": "panel", | ||
"type": "panel", | ||
"label": "Panel", | ||
"input": false, | ||
"tableView": false, | ||
"components": [ | ||
{ | ||
"label": "Text Field", | ||
"applyMaskOn": "change", | ||
"tableView": true, | ||
"key": "textField", | ||
"type": "textfield", | ||
"input": true | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "button", | ||
"label": "Submit", | ||
"key": "submit", | ||
"disableOnInvalid": true, | ||
"input": true, | ||
"tableView": false | ||
} | ||
] | ||
} |