Forum Discussion
- QuickBaseCoachDQrew CaptainI suggest either this
&key=" & URLEncode([Product #])
or else
&rid=" & [Record ID#]
to indicate which record is to be edited.
Maybe there are some spaces or characters in the [product #] that the URL does not like. - SamKrauszQrew CadetThanks for the reply
Still the same issue
var bool NewToggle = If([Rechecked]=false,true,false);
var text URL = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&key=" & URLEncode([Product #])
& "&_fid_1317= " & $NewToggle;
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0); - QuickBaseCoachDQrew CaptainThere is a space that does not belong after your = sign
& "&_fid_1317= " & $NewToggle; - SamKrauszQrew CadetYea Yes, you know everything..........
Thanks for the quick help
I learn something today - QuickBaseCoachDQrew CaptainYou are building a URL, so there are no spaces allowed in a URL ....
- SamKrauszQrew CadetYes Yes
Thanks