Forum Discussion
MCFNeil
7 years agoQrew Captain
If you use an 'onclick' to open a new window, you can have the new window open a simplified form.
That form can have the desired drop-down menu you need. Then save and close the window.
onclick=\"var a=window.open('"&$URL&"', 'newwindow', 'width=800,height=300');setInterval(function() {if (a.closed) {window.location.reload();}},500);\"
This example will reload the original page so you see the refreshed data.
That form can have the desired drop-down menu you need. Then save and close the window.
onclick=\"var a=window.open('"&$URL&"', 'newwindow', 'width=800,height=300');setInterval(function() {if (a.closed) {window.location.reload();}},500);\"
This example will reload the original page so you see the refreshed data.