KellyBianchi
8 years agoQrew Assistant Captain
Check a box while opening a new record
I would like to mark the parent record assigned at the same time a new child record is created, in one scenario. So what can I add to the existing 'Add Record' formula to do that?
URLRoot() & "db/" & [_DBID_LOCATIONS] & "?a=API_GenAddRecordForm&_fid_10=" & URLEncode ([Record ID#])& "&z="
-and-
In another scenario, I am looking to populate the Date/Time field while opening a new record.
What can I add to my existing Time Stamp Button formula to do that?
var text URL = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&rid=" &([Record ID#])
& "&_fid_29=" & Now();
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});" & "void(0);
URLRoot() & "db/" & [_DBID_LOCATIONS] & "?a=API_GenAddRecordForm&_fid_10=" & URLEncode ([Record ID#])& "&z="
-and-
In another scenario, I am looking to populate the Date/Time field while opening a new record.
What can I add to my existing Time Stamp Button formula to do that?
var text URL = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&rid=" &([Record ID#])
& "&_fid_29=" & Now();
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});" & "void(0);