Forum Discussion
ChayceDuncan2
Qrew Cadet
Are you referring to the way that Quick Base does the pop-up window when you opt to create a new record from a record picker? So instead of doing a true genAddRecordForm like most default buttons - have it be a pop up?
If yes - you can just mimic the behavior that QB does from a record picker like so:
Chayce Duncan | Technical Lead
(720) 739-1406 | chayceduncan@quandarycg.com
Quandary Knowledge Base
If yes - you can just mimic the behavior that QB does from a record picker like so:
var text url = "https://qbrealm.quickbase.com/db/dbid?a=GenNewRecord&bg=1";The bg=1 is truly what does it I believe.
"<a style='width: 150px;border-color:black; text-decoration: none; background:#3761a2;color:white;' class='btn btn-sm btn-primary' href='" & $url & "'" &
" target='_blank'>ADD NEW</a>"
Chayce Duncan | Technical Lead
(720) 739-1406 | chayceduncan@quandarycg.com
Quandary Knowledge Base
QuickBaseCoachD
6 years agoQrew Captain
Much appreciated, I will see if I can get that working.