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
reddy22reddy22 

Custom account Lookup

Hi All

 

In salesforce we have lookup form Contact to Account.i developed the custom visualforce pageusing the fallowing link

 

http://blog.jeffdouglas.com/2011/08/12/roll-your-own-salesforce-lookup-popup-window/

 

but the issue is when i create New Account through lookup click on save it is not going to maipage that measn when i click save the account name shoul papulate in the account field as it is in the standard salesforce functionality but it is not working like that

can you please help me for this ASAP.

 

Thanks

Pradeep.G

9011082210

 

Navatar_DbSupNavatar_DbSup

Hi,


It’s working at my end. I have used the below code and its working as standard lookup functionality.

 

<apex:page standardController="contact" >
<apex:form >
<apex:inputField value="{!contact.accountid}"/>
</apex:form>
</apex:page>