Select Deprecated
React Bootstrap 5 Select
React Select fields components are used for collecting user provided information from a list of options.
Warning: This documentation is for an older version of the MDBSelect
component, which has moved to the MDBSelectDeprecated
one. We recommend using the latest one you can find here.
Note: Read the API tab to find all available options and advanced customization
Basic example
Select fields components are used for collecting user provided information from a list of options.
Basic select behaves like a native one and by default marks the first available option as
selected. To change this setting, easily set the
preselect
property to false
.
Multiselect
Add multiple
property to the select element to activate multiple mode.
Select with label
It is possible to add select label by setting the
label
property.
Select with placeholder
Use placeholder
property to set placeholder for select input. The placeholder
will be displayed when input is focused and no option is selected.
Disabled select
Add disabled
attribute to the select component to disable select input.
Disabled options
Use disabled
key on option element to disable specific option.
Custom content
Custom content will be displayed at the end of the select dropdown.
Visible options
Use visibleOptions
property to change the number of options that will be
displayed in the select dropdown without scrolling.
Secondary text
Add secondary-text
key to the specific options to display secondary text.
Search
Set search
property to enable options filtering.
Select with icons
Add icon
property to the specific options to display the option icon.
Validation
Set validation
option to true
to enable component validation. The
validFeedback
and invalidFeedback
options allow to modify the
validation messages.
Select Deprecated - API
Import
Properties
MDBSelectDeprecated
Name | Type | Default | Description | Example |
---|---|---|---|---|
clearBtn
|
boolean | false |
Add clear btn to MDBSelectDeprecated |
<MDBSelectDeprecated clearBtn />
|
disabled
|
boolean | false |
Add disabled to MDBSelectDeprecated input |
<MDBSelectDeprecated placeholder="test" />
|
data
|
SelectData[] | {} |
Add data to MDBSelectDeprecated |
<MDBSelectDeprecated data={} />
|
inputClassName
|
string | '' |
Add class to MDBSelectDeprecated input element |
<MDBSelectDeprecated inputClassName='test' />
|
invalidFeedback
|
string | '' |
Invalid feedback for MDBSelectDeprecated |
<MDBSelectDeprecated invalidFeedback='test' />
|
label
|
string | '' |
Add label to select |
<MDBSelectDeprecated label='test' />
|
multiple
|
boolean | false |
Change select to multiselect |
<MDBSelectDeprecated multiple />
|
noResultLabel
|
string | 'No results' |
Change label in option search if there is no records in search value. |
<MDBSelectDeprecated noResultLabel="test" />
|
placeholder
|
string | '' |
Add placeholder to MDBSelectDeprecated |
<MDBSelectDeprecated placeholder="test" />
|
search
|
boolean | false |
Add search to MDBSelectDeprecated input in dropdown |
<MDBSelectDeprecated search />
|
searchLabel
|
string | 'Example Label' |
Change label of input |
<MDBSelectDeprecated searchLabel="test" />
|
selectAllLabel
|
string | 'Select all' |
Change label to select all option in multiselect |
<MDBSelectDeprecated selectAllLabel="test" />
|
size
|
'default' | 'lg' | 'sm' | 'default' |
Size of the MDBSelectDeprecated |
<MDBSelectDeprecated size='lg' />
|
tag
|
string | 'div' |
Tag to select input wrapper in MDBSelectDeprecated |
<MDBSelectDeprecated tag="span" />
|
tagWrapper
|
string | 'div' |
Tag to select dropdown wrapper MDBSelectDeprecated |
<MDBSelectDeprecated tag="span" />
|
validation
|
boolean | false |
Enables validation for the MDBSelectDeprecated |
<MDBSelectDeprecated validation />
|
validFeedback
|
string | '' |
Valid feedback for MDBSelectDeprecated |
<MDBSelectDeprecated validFeedback='test' />
|
visibleOptions
|
string | Number | '5' |
Change visible options in MDBSelectDeprecated |
<MDBSelectDeprecated visibleOptions="3" />
|
Advanced types
SelectData
SelectIcon
Methods
Name | Type | Default | Description | Example |
---|---|---|---|---|
getValue
|
(e: SelectData) => void | - |
This method returns a selected item in the MDBSelectDeprecated |
<MDBSelectDeprecated getValue={(e)=>console.log(e)} className="class" />
|
getData
|
(e: SelectData[]) => void | - |
This method return data if something change in prop data in MDBSelectDeprecated
|
<MDBSelectDeprecated getData={(e)=>console.log(e)} className="class" />
|