Multivalue TextField with Blank Lines on Web

Hi All

I have a Mutlivalue TextField to show a TextArea on Webbrowser. As Separator I used . This works fine. But the Problem is, that when a Users wants to enter a BlankLine, this BlankLine will be removed after Reload or Saving the Page. I looks like TextList Values whit no Content will be removed automatically. What can I do to let the Blank Lines there? I don’t want to change to a RichText Field. Hope there is a Solution for my Problem. Thanks in Advance…

Kimama

Subject: Multivalue TextField with Blank Lines on Web

If you really need to preserve new lines without using a rich text field, you’ll need to use a single-value hidden editable field and a matching computed-for-display field inside a passthru textarea with the editable field’s name. The computed field will have to replace @NewLine with “
” (or “
” if you want to look all XHTML-ish) in read mode only (or do the same thing in the column formula if you are displaying the documents in an inline treat as HTML view).

Subject: Multivalue TextField with Blank Lines on Web

Hello!

Perhaps you can play with the Input Translation of the field. Do something like:

@Implode(@Thisvalue; @Newline)

or

@Implode(@Thisvalue; “
”)

Good luck!

Steve in NYC

“Wherever you go, there you are.”