You need to sign in to do that
Don't have an account?
noobfn
PopUp window VF
Any thoughts on how to turn off popup from VF? I want the popUP to only show once, and when user clicks ok to remember it's response so pop up doesn't show up again when user refreshes the page or returns to this page. This is what I have in my VF and I'm toggling the checkbox showpopup in my trigger.
if({!opp.ShowPopUp__c==true})
{
var response = confirm("Click OK to clone?");
if(response==true)
{
window.parent.location.href='{!url_str}'+'{!opp.id}';
}
}
Can you show me how, because I don't see how I can apply a custom setting hierchy for this situation?
Thank you kindly.