ConnerDoyle1
7 years agoQrew Trainee
Rich Text Formula Button which saves record and opens new window
I am trying to create a rich text formula which will save the record and continue working so i stay on the form but at the same time opens a new window with a specific form inside of it. This app is basically a medical records app and the button pops open the patients health history. The formula works great if the record is already saved, but when they are adding a new record and i try to utilize it the new pop up window comes back as nothing there.
I know this is because the record id doesnt exist yet, which is why i added in the "save and keep working" functionality. I believe the issue is my URL variable is at the top, so when the action runs, it's populating the URL for the popup window before the record actually saves. I can't figure out how to grab the record id AFTER the record saves.
here is my current formula, any assistance would be so great! i've been working at this for 10+ hours and just cant seem to figure out a solution.
var text URLone=URLRoot() & "db/" & Dbid() & "?a=dr&dfid=11&rid=" & [Record ID#]&"&ifv=10";
"<a class='Vibrant Success' & onclick=\"$('#footerSaveAndKeepWorkingMenuOption').click();var a=window.open('"&$URLOne&"', 'newwindow', 'width=400,height=800');\" >Patient Health History</a>"
thanks so much!
I know this is because the record id doesnt exist yet, which is why i added in the "save and keep working" functionality. I believe the issue is my URL variable is at the top, so when the action runs, it's populating the URL for the popup window before the record actually saves. I can't figure out how to grab the record id AFTER the record saves.
here is my current formula, any assistance would be so great! i've been working at this for 10+ hours and just cant seem to figure out a solution.
var text URLone=URLRoot() & "db/" & Dbid() & "?a=dr&dfid=11&rid=" & [Record ID#]&"&ifv=10";
"<a class='Vibrant Success' & onclick=\"$('#footerSaveAndKeepWorkingMenuOption').click();var a=window.open('"&$URLOne&"', 'newwindow', 'width=400,height=800');\" >Patient Health History</a>"
thanks so much!