Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
Yes this can be done, but I would suggest refreshing the report do as to prevent the button from being pushed twice. When the report refreshed it would drop the Approved Record off the report.
The basic Syntax would be
var text URLONE = and the the code to edit the record;
var text URLTWO = and the code to add a record;
Var text URLTHREE = and the code to run the report;
$URLONE
& "&rdr=" & URLEncode($URLTWO)
& URLEncode("&rdr=" & URLEncode($URLTHREE)
Do you also need help with the code for the individual formula variables?
The basic Syntax would be
var text URLONE = and the the code to edit the record;
var text URLTWO = and the code to add a record;
Var text URLTHREE = and the code to run the report;
$URLONE
& "&rdr=" & URLEncode($URLTWO)
& URLEncode("&rdr=" & URLEncode($URLTHREE)
Do you also need help with the code for the individual formula variables?
- KevinSlider7 years agoQrew TraineeFor this instance, I would recommend a growl button that will allow the user to approve multiple records without navigation.
I understand the recommendation to prevent the button from being pushed twice however, so I would add a condition to hide the button when the status equals Complete on the button formula, and include some indication not to press for same record in the growl message. Erroneous data can be deleted. - QuickBaseCoachD7 years agoQrew CaptainWell post the code you have and I will help debug it