multiline text field in Salt?

0 votes
asked May 10, 2018 in Question / help by kenjiuno (120 points)

I want multiline text field for Drawing no. list like:

@startsalt

{
Drawing no. list | "A001\nA002\nA003"
PDF save to      | "          " | [Browse...]
}

--
[Now export]

@endsalt

"A001\nA002\nA003" is shown as is.

"A001<br>A002<br>A003" doesn't help also...

1 Answer

+1 vote
answered May 14, 2018 by Serge Wenger Work (15,620 points)
selected May 15, 2018 by kenjiuno
 
Best answer

Hello,

Is this what you want?

@startsalt

{
Drawing no. list | {A001
                    A002
                    A003}
PDF save to      | "          " | [Browse...]
}

@endsalt

commented May 15, 2018 by kenjiuno (120 points)
Thank you!
I could represent multiline text!
...