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
Paras JainParas Jain 

How to disable parent window or How to implement model popup in Visualforce page

 <a href="javascript:window.open('{!$Page.CommunityAccountLookup}?savePos=Owner', '_blank', 'width=800, height=400');">
<apex:image id="theImage" value="{!$Resource.Lookupicon}" width="20" height="20"/></a></span>

In which when i click on lookup looks like image a child window open, i want  to disable parent window ,when this child window opens..
 
Dushyant SonwarDushyant Sonwar
Hi paras,
Try This Thing...
<apex:outputlink url="{!$Page.CommunityAccountLookup}" target="_blank">
<apex:image id="theImage" value="{!$Resource.Lookupicon}" width="20" height="20"/>
</apex:outputLink>
Hope this helps.
Paras JainParas Jain
Output link not supported in Div  ..
I want to freeze parent window