Forum Discussion
A formula URL button has a selection in the field settings to Open in a Popup window. That is the easiest solution, but you also cannot control the popup size. To control the size, you can use a rich text formula.
In general, you use class OpenAsPopup
class='OpenAsPopup' data-height=800 data-width=900 data-refresh=true
(data-refresh=true will refresh your page when you close the popup, simply delete that if you do not want auto refresh)
Incorporate in a button as you need, sample below (but there are lots of ways to construct the button in a rich text field)
var text URL = URL Here;
"<a class='OpenAsPopup' data-height=800 data-width=900 data-refresh=true style=\"text-decoration:none; background: #688EB3; border-radius: 5px; color: #ffffff; display: inline-block; padding: 4px 0px 0px 0px; width:145px; height:22px; text-align: center; text-shadow: none; border: 0px solid #030404; font-size: 12px \"href='"
& $URL
& "'>Button Words Here</a>"
- CameronHughes2 months agoQrew Trainee
Ah, sorry for the confusion. I am not asking for the standard browser popup functionality. I am asking for the quickbase functionality where it does some type of in browser popup when you are on a new form and click view record on an embedded table. Does that make sense?