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
ClubliClubli 

Can you help me with a URL hack custom button

I have successfully created a URL hack button to create a case, however I want to be able to populate the description field with 3 fields from the parent object.

 

I can get the fields to come in however I want each value displayed on a new line.

 

For example the description is currently:

Value1 Value2 Value3

 

Desired format:

Value1

Value2

Value3

 

Any ideas?

Rahul SharmaRahul Sharma

Why done you execute onClick Javascript on button click

 

EIE50EIE50

Hi,

 

You need to use a <br/> tag to get your each value in a separate line like

  value1 <br/>

  value2 <br/>

  value3 <br/>

 

Is this what you are looking for? I recommend you posting your VF page in VF Development Boards just in case.

 

Thanks.