Hi all. Just out of curiosity, anyone had experien...
# suitescript
d
Hi all. Just out of curiosity, anyone had experience in showing a popup window on clicking on the somewhere on the form? I googled about that and the only way I found was a dialog window with custom html code in it.
t
You can use a button and in client script function you can call window.open I used
window.open(url, "_blank", "scrollbars=yes,resizable=yes,top=50,left=250,width=1000,height=700");
.
That works as a popup.
d
Thanks Som! Will try that.