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
Sam1980Sam1980 

Is it possible to Add a New button on the right of Addition Information

Is it possible to Add a New button on the right of Addition Information in Views Page, link that button to a url with dynamically appended clientID ?

User-added image
Best Answer chosen by Sam1980
kaustav goswamikaustav goswami
Hi Sach,

You will have to create a custom button called New.
If this is a custom object then go to setup - create - custom objects - then go the required custom object and click on the New Button or Link button.

Provide the details i.e., name and behaviour.

Then select Content Source as url. Then provide the value as follows:

/{!Custom_Object__c.Id}

Then you need to add this custom button to the page layout so taht it becomes visible to the end user.

Let me lnow if this helps.

Thanks,
Kaustav

All Answers

Pramod_SFDCPramod_SFDC
Hi,

I believe you can add a Custom Buuton and add it to the page layout.Below mentioned will help you in creating the button.

>> https://help.salesforce.com/HTViewHelpDoc?id=defining_custom_links.htm&language=en_US
>>https://help.salesforce.com/HTViewHelpDoc?id=defining_custom_links_fields.htm&language=en_US

Hope this will help you !!

Regards
Pramod
kaustav goswamikaustav goswami
Hi Sach,

You will have to create a custom button called New.
If this is a custom object then go to setup - create - custom objects - then go the required custom object and click on the New Button or Link button.

Provide the details i.e., name and behaviour.

Then select Content Source as url. Then provide the value as follows:

/{!Custom_Object__c.Id}

Then you need to add this custom button to the page layout so taht it becomes visible to the end user.

Let me lnow if this helps.

Thanks,
Kaustav
This was selected as the best answer