Forum Discussion
DawnQuitschau
4 years agoQrew Member
Does the pipeline solution require the user to be in grid edit (you mentioned "grid at save")? If so, I would just have them set the priority via the Priority drop-down using grid edit. I was hoping to offer them a quicker solution with the buttons - was hoping for some type of in-place update, where the Priority field was populated immediately with the click of a button. I'd like to give the page refresh a try and would appreciate help with the formula.
------------------------------
Dawn Quitschau
------------------------------
------------------------------
Dawn Quitschau
------------------------------
MarkShnier__You
Qrew Legend
4 years agoOK, try this as a formula URL button
var text URL = URLRoot() & "db/" & dbid() & "?act=API_EditRecord&rid= & [Record ID#]
& " &apptoken=xxxxxxxxxxxx" //optional if you have app tokens enabled.
& "&_fid_99=High"; // stuff HIGH into the field id # 99
var text RefreshPage = URLRoot() & "db/" & Dbid() & "?a=doredirect&z=" & Rurl();
$URL
& "&rdr=" & URLEncode($RefreshPage)
// after doing a URL we need to land the user somewhere. In this case we are refreshing the page.
------------------------------
Mark Shnier (YQC)
mark.shnier@gmail.com
------------------------------
var text URL = URLRoot() & "db/" & dbid() & "?act=API_EditRecord&rid= & [Record ID#]
& " &apptoken=xxxxxxxxxxxx" //optional if you have app tokens enabled.
& "&_fid_99=High"; // stuff HIGH into the field id # 99
var text RefreshPage = URLRoot() & "db/" & Dbid() & "?a=doredirect&z=" & Rurl();
$URL
& "&rdr=" & URLEncode($RefreshPage)
// after doing a URL we need to land the user somewhere. In this case we are refreshing the page.
------------------------------
Mark Shnier (YQC)
mark.shnier@gmail.com
------------------------------
- DawnQuitschau4 years agoQrew MemberI got it working, Mark. Thanks! :)
------------------------------
Dawn Quitschau
------------------------------