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
Rathod BabuRathod Babu 

how we can redirect to edit page after double click on field on visual force page

Hi Everyone

how we can redirect to edit page  after double click on field in page. 

Thanks in advance
k2018123k2018123
Hi Rathod,

Can you please specify if you are using a standard salesforce page or a custom visualforce page?
If it is standard salesforce page, you can enalble inline editing for salesforce.
If it is acustom visualforce page, you can have an anchor tag with url like "e?retURL=%2Fa3N0k000000A8zD" where Id is your record id.

Please let me knwo if this solves your problem.
Please dont forget to mark it as best  answer :)
Flint LockwoodFlint Lockwood
If I am understanding you correctly, you want to open up the edit page after a user double clicks on a field. If that is the case, use the "ondblclick" Javascript event, then call a Javascript function to redirect the user to the edit page.