Linebreak

Abishek, tri

Adds Line break to a text field in TRIRIGA. TRIRIGA does not support adding a line break or the carriage return character using a Modify Task in a workflow. It cannot be added using a '\n' or by using a <br> tag.

There are other ways to work around this, for example - by using a helper record to hold a carriage return character and then concatenating that to wherever a break is needed. However the implementation here is much simpler.

Modify the text by adding a tilde ('~') wherever the break is needed. Call the custom class in the workflow and that should replace the tilde with the carriage return. For example, the text must be modified to look like this -

Line~Break

And we should get this result -

Line
Break

The tiniest improvement in the development experience, at least for me.