Forum Discussion
MarkShnier__You
Qrew Legend
6 years agoThe complete code would be this
var text URL = URLRoot() & "db/" & dbid() & "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_9="
& "&delfile_fid_9=1";
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);"
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
var text URL = URLRoot() & "db/" & dbid() & "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_9="
& "&delfile_fid_9=1";
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);"
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
- GiuseppeMacri6 years agoQrew CaptainHmm, this would work great but I'd require some additional tweaking:
1. When regarding the removal, i mean as though an individual uploaded the wrong file, saw the issue, and instead of clicking upload file and hitting cancel, is there a way to get create a button which just removes all "Pending" file attachments
2. Don't want to expose the API token to the end user at this time.
------------------------------
GMacri
------------------------------- GiuseppeMacri6 years agoQrew CaptainBumping this post
------------------------------
GMacri
------------------------------- MarkShnier__You6 years ago
Qrew Legend
I don't have answers to your followup question.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
- GeorgeBramhall24 years agoQrew CadetAnyway to do this without using the suggested javascript?
------------------------------
George Bramhall
------------------------------- MarkShnier__You4 years ago
Qrew Legend
sure, here you go ......
var text Delete = URLRoot() & "db/" & dbid() & "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_9="
& "&delfile_fid_9=1";
var text RefreshPage = URLRoot() & "db/" & Dbid() & "?a=doredirect&z=" & Rurl();
$Delete
& "&rdr=" & URLEncode ($RefreshPage)
------------------------------
Mark Shnier (YQC)
mark.shnier@gmail.com
------------------------------- GeorgeBramhall24 years agoQrew CadetAwesome! Thanks Mark.
------------------------------
George Bramhall
------------------------------