Ok, I understand Francois, it is related to the web-app server, and not midware.

Is there a way to activate the link in the pulldown after selecting it?

The pulldown works perfect!

Best regards,

Ruud

Op 18-2-2011 10:23, Francois PIETTE schreef:

Ruud Kerstens wrote in Midware mailing list:
Now I am able to
get the information in a table in the webscreen, however due to
screenlimitations i need to create a pulldown and fill it with the
variable i retrieve.

The variable works fine in a table, but my dropdown/pulldown box does
not get any entry.

A pulldown list is an html select tag. It has option inner tag similar like this:
<select>
<option value="this">Ruud</option>
<option value="that">Peter</option>
</select>


The option part is just like a table as far as ICS page producer is concerned. You use the exact same construction as to build an html table, except the html elements are no option instead of tr and td. Delphi code is the same.

In ICS webpage template, the TABLE_ROWS system is not tied to html table. It can be used whenever you have repeating html code to produce.

Your template should looks like:
<select>
<#TABLE_ROWS PULLDOWN>
<option value="<#VALUE>"><#DISPLAY></option>
</#TABLE_ROWS>
</select>

--
francois.pie...@overbyte.be
The author of the freeware multi-tier middleware MidWare
The author of the freeware Internet Component Suite (ICS)
http://www.overbyte.be


--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be



--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be

Reply via email to