function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
RevJoelRevJoel 

Custom Static Text Field

I have a custom object in which I need to display a static list of names. This list needs to appear on every record in the object. Setting a default value won't work, because I need to display a list of names vertically. Any ideas?

Suresh RaghuramSuresh Raghuram

try like this

 

as passing input to the text similar like assigning for example

 

textbox 1 = "suresh1" + \n +" suresh2" .................................

 

there may be change in giving the double quotes  or single quotes

 

\n is a line break and + will append the values . try this if it works make this as  asolution.

RevJoelRevJoel

Thanks for the reply. That didn't work as it gave me a syntax error. Interestingly, it didn't tell me where the error was. The line simply said "Syntax Error".

 

I'll see if I can rewrite it to work.