You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 7, 2018. It is now read-only.
I have a widget that is a form, and I'd like to be able to inject into the html where the form is posting to. I've tried a bunch of ways to do this. I'd like to be able to put that variable in the ERB so I can reuse the widget across multiple environments, mostly prod/dev
<form id="rq-submit" action="<%= @esb01 %>" method="post" target="submit_frame">
Import Year: <select name="runProcess">
<option value="current">Current</option>
<option value="next">Next</option>
</select>
<script>
function confirmSubmit() {
if (confirm("Are you sure you want to run the import?")) {
document.getElementById("budget-import").submit();
}
return false;
}
</script>
<input type="submit" value="Submit" onclick="return confirmSubmit()">
</form>
Is there anyone who has solved this?
The text was updated successfully, but these errors were encountered:
I have a widget that is a form, and I'd like to be able to inject into the html where the form is posting to. I've tried a bunch of ways to do this. I'd like to be able to put that variable in the ERB so I can reuse the widget across multiple environments, mostly prod/dev
Is there anyone who has solved this?
The text was updated successfully, but these errors were encountered: