Description of the bug
Both Summary and Summary2 do not show uneditable columns in repeating group with the mode "onlyTable". The expected behaviour is for the summary components to show the entire table.
Steps To Reproduce
- Add a repeating group to the layout page where
edit.mode is onlyTable and one of the child components has tableColumns setting editInTable set to false. E.g.:
{
"id": "RepeatingGroupComponent",
"type": "RepeatingGroup",
...
"children": [
"InputComponent"
...
],
"edit": {
"addButton": false,
"deleteButton": false,
"editButton": false,
"mode": "onlyTable"
},
"tableColumns": {
"InputComponent": {
"editInTable": false
},
...
},
},
{
"id": "InputComponent",
"type": "Input",
"textResourceBindings": {
"title": "Title"
},
"dataModelBindings": {
"simpleBinding": "DataModelPath"
},
"required": false,
"readOnly": false,
},
- Add a
Summary or Summary2 component referencing the repeating group.
- See that the column with
"editInTable": false is not visible in the summary.
Additional Information
The same issue has been mentioned in:
The repeating group:

Summary with "editInTable": false:

Summary2 with "editInTable": false:

Summary with "editInTable": true:

Summary2 with "editInTable": true:

Description of the bug
Both
SummaryandSummary2do not show uneditable columns in repeating group with the mode"onlyTable". The expected behaviour is for the summary components to show the entire table.Steps To Reproduce
edit.modeisonlyTableand one of the child components hastableColumnssettingeditInTableset to false. E.g.:{ "id": "RepeatingGroupComponent", "type": "RepeatingGroup", ... "children": [ "InputComponent" ... ], "edit": { "addButton": false, "deleteButton": false, "editButton": false, "mode": "onlyTable" }, "tableColumns": { "InputComponent": { "editInTable": false }, ... }, }, { "id": "InputComponent", "type": "Input", "textResourceBindings": { "title": "Title" }, "dataModelBindings": { "simpleBinding": "DataModelPath" }, "required": false, "readOnly": false, },SummaryorSummary2component referencing the repeating group."editInTable": falseis not visible in the summary.Additional Information
The same issue has been mentioned in:
The repeating group:

Summarywith"editInTable": false:Summary2with"editInTable": false:Summarywith"editInTable": true:Summary2with"editInTable": true: