ElementCreateDropdown
Callable
Parameters
id: string
The name of the select item.
optionsList: readonly (string | Omit<HTMLOptions<option>, tag>)[]
The list of options for the current select statement. Can be supplied as a simple string or a more extensive
<option>
config.onChange: (this: HTMLSelectElement, event: Event) => any
An event listener to be called, when the value of the drop down box changes
optionaloptions: { disabled?: boolean; multiple?: boolean; required?: boolean; size?: number } = null
Additional
<select>
-specific propertiesoptionaldisabled: boolean
optionalmultiple: boolean
optionalrequired: boolean
optionalsize: number
htmlOptions: Partial<Record<select, Omit<HTMLOptions<select>, tag>>> = null
Additional ElementCreate options to-be applied to the respective (child) element
Returns HTMLSelectElement
- The created element
Construct a
<select>
-based dropdown menu.