Expression in form title

1
I am opening a form from a microflow and would like to set the form title using data from a variable. Is this possible? It appears only literal string can be set using the "override form title" option.
asked
2 answers
4

You can do this by using a java action. One of the matching overloads of

this.openFormFeedback()

should help you out, for example:

this.addOpenFormFeedback("MyFirstModule.HomeForm", "Formtitle: 3 + 2 = " + (3 + 2), ...)
answered
0

Hi Jouke,

I have wondered about the same option and have filed a feature request as has others. The request now has the status Scheduled for backlog. So I hope it will become available in a future release.

answered