String substitute is not working in a!paragraphField( ) function saveInto

Hi,

I am trying to substitute few characters from input string and store/display in the rule input variable (i.e. target).

SAIL: 

a!localVariables(
{
a!buttonArrayLayout(
buttons: a!buttonWidget(
label: "Add",
value: "Add",
saveInto: a!save(ri!target,"2323432345,2343234543,4433443323")
)
),
a!forEach(
items: ri!target,
expression: a!paragraphField(
label: "Target",
labelPosition: "COLLAPSED",
value: substitute(fv!item, ",", char(10)),
saveInto: a!save(fv!item,substitute(fv!item, ",", char(10))),
required: true,
refreshAfter: "UNFOCUS",

)
)
}
)

In the image above I have used substitute( ) function to replace all comma ( , ) character with char(10) but as you can see the display value is converted to desired format where as the data stored in rule input remains the same (comma separated).

Please help me convert the data : 

From : 

2323432345,2343234543,4433443323

To : 

2323432345
2343234543
4433443323

  Discussion posts and replies are publicly visible