I have a data type called “job description”, each entry is a line of job description like “responsible for escalating issues across multiple business units”.
I would like to be able to:
select from dropdown
add that selected line to a multiline input
keep selecting multiple descriptions, all added to the same input, in separate lines
What I have so far:
RG of “job description”
workflow to add selected items to custom state
show custom state’s content in multiline input
Problem: all items are added but they’re not separated, all in 1 single line consecutively Question: How do I make them in separate lines?
@adamhholmes
thanks for the tips, it worked!
Another question I have is that after adding those lines, and editting the input content, I’m not able to add more.
Any idea how to fix that as well?
Cheers.
Once you change the initial content - it’s no longer initial content…
What you can do is put the multiline input into a group, create a custom state text somewhere and set the multiline input’s initial value to that custom state.
Then anytime either the dropdown or the multiline input value is changed, just update the custom state and reset the group the multiline input is in.
Resetting the group does the trick! i tried al kind of things because the multiline input initial content didn’t change when i updated the custom state. But the reset makes it al working perfectly!