- ...
A string or strings of HTML to pass to html5::select(), most likely a sequence of option tags.
- id
A string, the id/name for the select, passed to the id and name attributes of the <select> tag.
- label
A string, the label to use for the select, passed to html5::label().
- text
A string, text or HTML to display with the select and label tags.
- multiple
TRUE/FALSE, if TRUE, adds the "multiple" attribute to the select tag.
- required
TRUE/FALSE, if TRUE, will add the required attribute to the select tag.
- div_attr
A named list or named vector, names are attribute names and values are attribute values. Passed to the attr parameter of html5::div, wrapping the select, label, and text.
- select_attr
A named list or named vector, names are attribute names and values are attribute values. Passed to the attr parameter of html5::select.
- label_attr
A named list or named vector, names are attribute names and values are attribute values. Passed to the attr parameter of html5::label.
- text_attr
A named list or named vector, names are attribute names and values are attribute values. Passed to the attr parameter of html5::div, which will display the text parameter.