Autofilling a field with another field's value using Contour
Is it possible to fill a field with the value of another field?
Example: I have a "firstname" field and a "lastname" field and a "fullname" hidden field. I would like to populate "fullname" with a concatenation of first and last.
I was trying to do this with the bracket syntax (I tried "{firstname} {lastname}", "[@firstname] [@lastname]", and "[%firstname] [%lastname]"), but it appears that the commands are evaluated before the page is rendered, not on submit.
Any tips or suggestions? Or any other approaches?
If there is any way to put in a feature request for Contour, I'd request parsing the curly brace syntax after submission.
Autofilling a field with another field's value using Contour
Is it possible to fill a field with the value of another field?
Example: I have a "firstname" field and a "lastname" field and a "fullname" hidden field. I would like to populate "fullname" with a concatenation of first and last.
I was trying to do this with the bracket syntax (I tried "{firstname} {lastname}", "[@firstname] [@lastname]", and "[%firstname] [%lastname]"), but it appears that the commands are evaluated before the page is rendered, not on submit.
Any tips or suggestions? Or any other approaches?
If there is any way to put in a feature request for Contour, I'd request parsing the curly brace syntax after submission.
The only options I came up with were to make the changes in a custom workflow, or add some jQuery. I decided on the latter because it was easiest:
is working on a reply...