Hello,
I am currently working on a Server App that displays different dashboards.
Based on a published parameter the user can select one dashboard and is lead to the one selected.
To fascilitate the usage I'd like to introduce a drop-down menu (bearing the names of all published parameters options) on the very same page as the dashboard.
So far I managed to do the menu:
<form method="post" action="">
<p>
<label for="pays">Quel dashboard ?</label><br>
<select name="dashboard" id="Dashboard">
<option value="ctrl_job_dr">exemple1</option>
<option value="ctrl_job_semaine">exemple2</option>
</select>
</p>
</form>
<input type="submit" value="Envoyer">
Just inserting a link (href) does not work in this case for the link does only point to the fmw file.
Here's the request I get when I select a dasboard:
Does someone has an idea of how to put that into an html form (drop-down menu)?
Thanks in advance !