Radio button triggering text in field
I hava multiple choice - like 1 / 2 / 3
I have textField
What kind of calculation need to use if choice = 1 than textField:= "text1"
Thank you for your help
5 replies
-
I have managed to do it.
Could you please help me how can I add paragraps in inserted text
So it will be like this in the textfield. I was trying to calculate it with html(text1 <br> text 2) but did not work
Line 1
Line 2
Line 3
-
Try this:
if choice = 1 then textField:= "
text1"
-
Try:
if choice = 1 than textField:= "text1" + "
"
-
if Szablon = 4 then
Procedura := "Text1" + " Text2" + " Text3" + " Text4" + " Text5" + " Text5" + " Text6" + " Text7" + "
endThank you it works. But now i want all the separate text in different lines like:
Text1
Text2
Text3
Text4
Text5
Text6
Text7
Not like this
Text1 Text2 Text3 Text4 Text5 Text5 Text6 Text7
-
"Text1" + "
" + " Text2" + "
" + " Text3" + "
"
etc.
Content aside
- 5 yrs agoLast active
- 5Replies
- 1624Views