Forum Discussion
DineshDinesh
10 years agoQrew Cadet
David,
I guess this is not possible OOB in QuickBase form since QuickBase always calls the Save dialog before redirecting to the mentioned URL. However, there is a long way to achieve using Image onload by pasting the following code in the Image Onload script.
$("a:contains('<button text')").off('click').on('click',function(){$("#dialogLinkAway").hide();LinkAwayNo();DoSave()})
Here the <button text> needs to be replaced with the actual text that you want to show in the button. In the button formula, you just need to place a space character.
I guess this is not possible OOB in QuickBase form since QuickBase always calls the Save dialog before redirecting to the mentioned URL. However, there is a long way to achieve using Image onload by pasting the following code in the Image Onload script.
$("a:contains('<button text')").off('click').on('click',function(){$("#dialogLinkAway").hide();LinkAwayNo();DoSave()})
Here the <button text> needs to be replaced with the actual text that you want to show in the button. In the button formula, you just need to place a space character.
GauravSharma3
9 years agoQrew Commander
Helpful :)