Forum Discussion
ChrisFaye1
5 years agoQrew Cadet
Good Morning and Thank You, Mark!
Here's the code I'm using, but it's not allowing me to save. Do I need to close out the string or something? Are you seeing anything missing or incorrect?
Thank You!
var text URLONE = URLRoot() & "db/" & Dbid()
& "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_2042=" & URLEncode(UserToName(User()))
& "&_fid_2043=true"
& "&_fid_627=false"
& "&_fid_236=" & "Transfer"
& "&apptoken=________________";
var text URLTWO = URLRoot() & "db/" & Dbid() & "?a=GenCopyRecord&rid=" & [Record ID#];
$URLONE
& "&rdr=" & URLEncode($URLTWO)
If([Status]="Transfer",
"<a class='Vibrant Danger'>Transferred</a>",
"<a class='Vibrant Alert' style='border:1px solid #6BBD57; background-color:#47368B'" & "a href=" & $URL & ">Transfer</a>")
------------------------------
Chris
------------------------------
Here's the code I'm using, but it's not allowing me to save. Do I need to close out the string or something? Are you seeing anything missing or incorrect?
Thank You!
var text URLONE = URLRoot() & "db/" & Dbid()
& "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_2042=" & URLEncode(UserToName(User()))
& "&_fid_2043=true"
& "&_fid_627=false"
& "&_fid_236=" & "Transfer"
& "&apptoken=________________";
var text URLTWO = URLRoot() & "db/" & Dbid() & "?a=GenCopyRecord&rid=" & [Record ID#];
$URLONE
& "&rdr=" & URLEncode($URLTWO)
If([Status]="Transfer",
"<a class='Vibrant Danger'>Transferred</a>",
"<a class='Vibrant Alert' style='border:1px solid #6BBD57; background-color:#47368B'" & "a href=" & $URL & ">Transfer</a>")
------------------------------
Chris
------------------------------
MarkShnier__You
Qrew Legend
5 years agotry this
var text URLONE = URLRoot() & "db/" & Dbid()
& "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_2042=" & URLEncode(UserToName(User()))
& "&_fid_2043=true"
& "&_fid_627=false"
& "&_fid_236=" & "Transfer"
& "&apptoken=________________";
var text URLTWO = URLRoot() & "db/" & Dbid() & "?a=GenCopyRecord&rid=" & [Record ID#];
var text URL =
$URLONE
& "&rdr=" & URLEncode($URLTWO);
If([Status]="Transfer",
"<a class='Vibrant Danger'>Transferred</a>",
"<a class='Vibrant Alert' style='border:1px solid #6BBD57; background-color:#47368B'" & "a href=" & $URL & ">Transfer</a>")
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
var text URLONE = URLRoot() & "db/" & Dbid()
& "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_2042=" & URLEncode(UserToName(User()))
& "&_fid_2043=true"
& "&_fid_627=false"
& "&_fid_236=" & "Transfer"
& "&apptoken=________________";
var text URLTWO = URLRoot() & "db/" & Dbid() & "?a=GenCopyRecord&rid=" & [Record ID#];
var text URL =
$URLONE
& "&rdr=" & URLEncode($URLTWO);
If([Status]="Transfer",
"<a class='Vibrant Danger'>Transferred</a>",
"<a class='Vibrant Alert' style='border:1px solid #6BBD57; background-color:#47368B'" & "a href=" & $URL & ">Transfer</a>")
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------