Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GFORMS-3073 - Smart strings are not playing back correctly in tables …
…with alternate values based on includeIf expression (#2349) { "_id": "multi-value-string-issue", "formName": "Multi value string issue", "description": "Multi value string issue", "version": 1, "emailTemplateId": "dynamicEmail_confirmation", "authConfig": { "authModule": "anonymous" }, "sections": [ { "title": "Enter amount", "fields": [ { "id": "amount", "type": "text", "format": "number", "value": "${'123'}" } ] }, { "title": [ { "en": "Table" } ], "fields": [ { "id": "gformTable", "summaryValue": [ { "en": "X" } ], "type": "table", "label": [ { "en": "Header row and Value row must be equal" } ], "header": [ { "en": "${amount}, ${amount}, ${amount}, ${amount}" } ], "rows": [ { "values": [ { "value": [ { "en": "${'Foo'} ${'Bar'} ${'Baz'}", "includeIf": "${1 = 2}" }, { "en": "${amount}, ${amount}, ${amount}, ${amount}" } ] } ] } ] } ] } ], "acknowledgementSection": { "fields": [] }, "destinations": [ { "id": "transitionToSubmitted", "type": "stateTransition", "requiredState": "Submitted" } ] }
- Loading branch information