Forum Discussion
QuickBaseJunkie Qrew Legend
Qrew Legend
6 years agoHi Mike!
I just did this myself :-)
Interestingly as soon as I added the height & width it opened in a new window vs a new tab.
In a Formula - Rich Text field:
------------------------------
Sharon Faust (QuickBaseJunkie.com)
Founder, Quick Base Junkie
https://quickbasejunkie.com
------------------------------
I just did this myself :-)
Interestingly as soon as I added the height & width it opened in a new window vs a new tab.
In a Formula - Rich Text field:
var text URL = URLRoot() & "db/" & Dbid() & "?a=er&rid=" & [Record ID#]; "<a class='Vibrant Success' onclick=\"window.open('" & $URL & "','Edit','width=800,height=700')\">Edit Record</a>"
Let me know if this works for you š š
------------------------------
Sharon Faust (QuickBaseJunkie.com)
Founder, Quick Base Junkie
https://quickbasejunkie.com
------------------------------
- SamJones16 years agoQrew Cadet@Sharon Faust (QuickBaseJunkie.com) I'd be careful with that particular configuration. Onclick is a Javascript call, and those will be getting scrubbed over time. That said, you can do a very similar thing like so:
 āvar text URL = URLRoot() & "db/" & Dbid() & "?a=er&rid=" & [Record ID#]; "<a class='Vibrant Success' href='" & $URL & "' target='_blank'>Edit Record</a>"ā 
 ā
 That'll open in a new window, but you're not able to set the size from there.
 @Mike Tamoush, If you need more help with it, swing by Data Collaborative's free Office Hours, every Thursday at 1pm Eastern.
 Sign up here:
 https://data.quickbase.com/db/bqeqqj33i
 ------------------------------
 - Sam
 ______________________________________________
 Sam Jones
 Vice President, Product and Technology
 he/him
 The Data Collaborative, Inc.
 sjones@datacollaborative.com
 366 Massachusetts Ave, Suite 203 | Arlington, MA 02474
 ------------------------------