Focal Point
[SOLVED] Drop down .fex in html only list certain values for 'All'

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

September 30, 2014, 07:57 AM
nico
[SOLVED] Drop down .fex in html only list certain values for 'All'
I have a .fex that populates a drop down in my html, then that value(s) chosen are passed into a stored procedure. I need to have only specific values included in a 'All values1,2,3' in addition to the 'All' option that is already listed.

How would webfocus handle that?
Woudl it have to be done a dbase level?

TABLE FILE LOOKUP_COMPANY
PRINT
NAME1
NAME2
NAME3
NAME4
NAME5
NAME6
ALLNAME1STVALUES (NAME1,NAME2,NAME3)

ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT XML
ON TABLE SET STYLE *
$
ENDSTYLE
END

This message has been edited. Last edited by: <Kathryn Henning>,


WebFOCUS 7.6
Windows, All Outputs
October 01, 2014, 08:19 AM
Neelima
Use following sample code:-
TABLE FILE CAR
PRINT
CAR.COMP.CAR
CAR.CARREC.MODEL
CAR.BODY.SEATS
WHERE CAR.COMP.CAR EQ &CAR.(OR(FIND CAR.COMP.CAR IN car)).CAR:.;
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
ENDSTYLE
END


WebFocus 8104,8204
Excel/PDF/HTML/HTMLTABLE/XML/ALPHA/GIF file/GRAPH/Active technologies
October 09, 2014, 08:27 AM
nico
SOLVED

Thank u for your help.


WebFOCUS 7.6
Windows, All Outputs
October 10, 2014, 09:50 AM
Neelima
Please Mark this post as SOLVED


WebFocus 8104,8204
Excel/PDF/HTML/HTMLTABLE/XML/ALPHA/GIF file/GRAPH/Active technologies