Documentation Comments
Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.
Reality V15.0 ()
RW_SELECT_LIST (RealWeb) (rw_select_list.htm)
![]() |
Example |
Generates a pull-down menu of choices in a form. Outputs directly to RealWeb's RWC.OUTBUF buffer.
RW_SELECT_LIST(Name, aValueText, aValue, aSelected, aClass)
Name A name, unique within the form, for the list.
aValueText A
dynamic array, with one attribute for each list item. Each attribute specifies the text to be displayed in the list box
for that item.
aValue A
dynamic array, with one attribute for each list item. Each attribute
specifies the value to be returned when the form is submitted with
that item selected.
aSelected A
dynamic arraycontaining a
Boolean
value for each list items.
Items for which the element is TRUE will be preselected.
aClass A
dynamic arraythat can contain the
following elements:
Element No. | Attribute | Description |
---|---|---|
1 | CLASS | The name of a tag class defined in a
CSS![]() |
2 | STYLE | The style of the list. Enter MULTIPLE to enable multiple selections. |
3 | SIZE | The number of lines in the visible section of the select list. |
4 | OnClick | The name of the function to be run when the Onclick event occurs. |
Attributes defined in the aClass parameter are applied to the SELECT tag.
For information about using aClass, see The aClass Parameter.
Requires a previous call to RW_START_HTML_FORM.