Focal Point
Selecting a report from a Drop Down.

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/4801019331

October 27, 2005, 02:31 PM
Pablo1559
Selecting a report from a Drop Down.
I am fairly new to WebFocus and am wondering if this is even possible through Resource Layout.

I have 14 reports. What is requested is a dropdown where a user can select a specific report and then submit. Rather then having 14 different submit buttons on one page to run the specific reports.

I have referenced the reports in the drop down value. But when I reference the report value on the submit button I recieve a error.


Currently Running WebFocus 5.3.4

Any suggestions would be greatly appreciated
Pablo
October 27, 2005, 03:48 PM
Saif K
In a regular html interface the following code works. You can put this code in the html page created by the resource layout and try.

{form name="Form" method="POST"
action="http://servername/ibi_apps/WFServlet" target='_blank'}

Change the name here to IBIF_ex.....

<select name="IBIF_ex" style="color:#000080">
<option value="REP01" displaytext="Sales Report-1">Sales Report1 </option>
<option value="REP02" displaytext="Sales Report-2">Sales Report2 </option>
</select>