Method Html3():selectStart() Professional

Mark the begin of a selection.

Syntax
:selectStart( <cName>        , ;
              [<lMultiple>]  , ;
              [<cOptions>] ) --> NIL
Parameters
<cName>
The parameter <cName> becomes the value of the nameattribute.
<lMultiple>
If the parameter <lMultiple> is .T. (true) the attribute multible is set in the HTML <select> tag. This parameter defaults to .F. (false).
<cOptions>
The optional parameter <cOptions> is a character string that is inserted into the HTML <select> tag.
Return

The return value of the method :selectStart() is always NIL.

Description

The method creates the HTML code to mark the begin of a selection, or combobox, respectively. Only the selected item is transferred in the name/value pair when the form is submitted.

HTML output:

   <select [multiple] name="cName" [cOptions]> 

Feedback

If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.