[SalesForce] How to open page in a new popup window

In page:

 <apex:commandLink value="Action Planner" action="{!started}"  styleClass="start" target="_blank"/>

In Class:

  public PageReference started(){ return new PageReference('/apex/ActionListed');}

How can I open this in a new popup window??target=_blank just opens it in a new tab not in new window.

Best Answer

Try this. Haven't tried it in my org. You may need to change the width & height.

enter image description here

Related Topic