I have a text area (long) field. It contains the default value "Text1" & BR() & "Text2".
It never renders the br() tag correctly, the final result is always 'text1 BR() text2'. Field type is text area(long). Setup to display 2 lines.
What am I doing wrong here? I've tried both "text1" & BR() & "Text2" and "Text1"&BR()&"Text2". And according to the documentation it should work.
apex:inputTextarea? – Sergey Feb 20 at 12:47"Text1" & BR() & "Text2"for an account object and it works fine for me. At the account creation standard page i can see an input text (long) with Text1 and Text2 with brake in between. – Sergey Feb 20 at 13:10