new Select(options) → {Class}
A select component to use wherever a simple select is needed.
Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options | object | Component options. Properties
|
- Since
- 2.2.0
- Source
The select instance.
- Type:
- Class
import Select from '@gravityforms/components/html/admin/elements/Select';
function Example() {
const selectInstance = new Select( {
name: 'select-name'
options: { [
{
label: 'Option 1',
value: 'option-1',
},
{
label: 'Option 2',
value: 'option-2',
},
{
label: 'Option 3',
value: 'option-3',
},
] },
target: '#select-target'
} );
}