Copy link to clipboard
Copied
I'm using the radio buttons, so that my signer must 'choose only one' option. But to help him, I want one of the options to be default. But... how???
For checkbox you have the checkbox(checked), but i can't find a solution for the radio buttons.
Is it possible that a grouped set of options have a default value.
Greetings!
If you are using the drag and drop environment to build your forms, the option to define the default is a drop down that identifies the default value based on the individual value of the radio button:
Text tags will look something like this:
{{(Red)Color_es_:signer1:label(“Red”)}}
{{(Blue)Color_es_:signer1:label(“Blue”)}}
{{(Green)Color_es_:signer1:label(“Green”):default("Green")}}
Within the tag, you provide the :default directive, and then use the label to identify the specific element
Copy link to clipboard
Copied
Greetings!
If you are using the drag and drop environment to build your forms, the option to define the default is a drop down that identifies the default value based on the individual value of the radio button:
Text tags will look something like this:
{{(Red)Color_es_:signer1:label(“Red”)}}
{{(Blue)Color_es_:signer1:label(“Blue”)}}
{{(Green)Color_es_:signer1:label(“Green”):default("Green")}}
Within the tag, you provide the :default directive, and then use the label to identify the specific element
Copy link to clipboard
Copied
The 'text tags' solutions was what I was looking for!
It works! With a small adjustment: it's not the label that you use with the :default directive, but the value that you use
In other words: {{(Gr)Color_es_:signer1:label("Green"):default("Gr")}} works perfect.
Thanks!!!!