You need to sign in to do that
Don't have an account?

Pop Up is not coming in Firefox?
Hi,
I have one formula field. Inside that, I wrote one Hyperlink with javascript. We can get the VF page as a Popup from that javascript. The pop-up is coming Google Chrome.But not coming in Firefox.My code is below...
HYPERLINK("javascript:window.open('/apex/MDFUpdateRejectionReason?Id="&Id+"', '_blank', 'resize=no,status=no,location=no,toolbar=no,menubar=no,width=400,height=300,left=600,top=300');","(Click here to update the rejection reason)")
Please help me on this.
Hello Chandra,
Try the formula below:
I've added the parameter "_self" to prevent your link from opening a new tab and added this.preventDefault(); at the event of your js to prevent the link from executing its normal behavior.
Regards.
Don't forget to mark your thread as 'SOLVED' with the answer that best helps you.
All Answers
Popups are controlled withen the browser settings so you should check your firefox settings for popups - perhaps they have been disabled? Following that, the next step would be to inspect your code in Firebug (or some alternitive) to see if the Javascript is throwing an error.
Hello Chandra,
Try the formula below:
I've added the parameter "_self" to prevent your link from opening a new tab and added this.preventDefault(); at the event of your js to prevent the link from executing its normal behavior.
Regards.
Don't forget to mark your thread as 'SOLVED' with the answer that best helps you.
Thanks for your answer stephen.