Your select dropdown’s data may be fetched via ajax if you provide a function as the value for this option.
The function will be passed one argument, the dataSource that was provided to
the dataSource prop
The return value of the function must be a promise object. (i.e. an object with a then function). The promise must resolve with a value meeting the description of the dataSource option documentation.
The dataSource option should be left undefined when using this option.
When set to true, If a user has entered a search string into the search input and then makes a selection from the filtered result set, the search field will be automatically cleared.
The function provided will serve as a replacement of the default search filter function.
(If left undefined the default filter function will be used)
The Default Filtering function is a lowercase string comparison for text. It matches the optionLabelKey value to the text entered into the dropdown’s search field). The function leverages Lodash’s filter function with your dataSource collection as its first argument
This function provides custom templating capability for your dropdown heading options.
The function will be called with the value returned as each group’s object key as its first argument. (This is the value returned by Lodash’s groupBy when passed the value of your groupBy option). It should return your desired group heading markup
This function provides custom templating capability for your dropdown options. It will be used to render the display of selected values in the case of a multiple select control which does not have tags set to true.
The function should accept two parameters,
a single option object from your dataSource collection
the current searchString (for searchable controls)
It should return your desired markup based on that single option object's properties and the search term
This value will be added as a css class to the icon element in the search-filtering bar (when searchable is true).
This allows you to override the default search icon.
This function provides custom templating capability for how the selected items will display inside the control trigger. It will be used to render the display of selected values.
The function should accept one parameter,
the current state value of the control
It should return your desired markup based on that value
The dataSource option provides the data for your options dropdown. The value provided will be passed to an internal parser (_configureDataSource), which will return a collection (array of option objects) found based on argument type
The parsing method supports dataSource values as:
an array of option objects (will be directly assigned to state.data)
an object with a collection property (object.collection will be assigned to state.data)
an object with a get function (the return value of object.get(‘collection’) will be assigned to state.data)
Each option in the resulting collection must have the following properties:
a unique value corresponding to the key set by the optionValueKey or the default optionValueKey of 'id'
a defined value corresponding to the key set by the optionLabelKey or the default optionLabelKey of 'name'
Each Option may be disabled for selection by adding an optional boolean property "disabled" i.e. disabled: true
(focusOnMount) (Boolean) optional (Used in conjunction with the openOnMount option)
When set to true, The component will be given document focus after it mounts
(Forcing focus is only advisable if the user input from the super select control is the main purpose of your page)
Whether or not the control allows browser default onWheel scroll handling in an open dropdown.
By default, mousewheel events are arrested so that the control will not scroll out of view as the end of its results set is reached. When this prop is set to true, the handler that stops the page scrolling will be bypassed.
A string or React Element value which will be displayed when your dropdown shows no results. (i.e. dataSource collection is empty , or ajaxDataFetch returns an empty collection)
This is the main callback handler for the control.
When a user makes selection(s), this handler will be called, the selected option (or when multiple or tags an array of selected values) will be passed to the handler as an argument.
(The values passed are option objects from the dataSource collection)
(defaults to using ‘id’ as the key if left undefined)
This value represents the key in each option object (from the dataSource collection), which represents the value that uniquely identifies that option across the dataSource collection.
Think of it in terms of the value attribute of the html option tag (inside a select)
(A hasMorePages function should be provided when using this option)
Additional pages of data can be fetched via ajax if you provide a function as the value for this option.
The function takes one argument, the value provided as the dataSource (or the return value of the ajaxDataSource function).
It must return a promise object. (i.e. an object with a then function). The promise must resolve with a value meeting the description of the dataSource option documentation.
The pageDataFetch function will be called based upon the user’s scroll position in the dropdown (reaching a threshold close enough to the end of the dropdown's results list).
It will not be called when loading ajax data, or when filtering results in a searchable dropdown, or when hasMorePages evaluates to false
When the control's main element is focused. Pressing the down arrow key will open the dropdown. (It can also be pressed with the alt-key with the same result)
(Opened Control State)
navigation of options
Pressing the down-arrow key when the dropdown is open will move focus down to the next selectable option. If the searchable prop is true, The first keypress of the down arrow will focus the search input field.
Multiselect Specific Behaviors
(With shift-key held down)
select focused option and move focus down
If the down arrow is pressed with the shift-key in a multiselect or tags control, the focused option will be selected (or deselected if alreadySelected), and the focus will move down to the next available option.
Pressing enter when the the control has focus will open the dropdown.
(Closed Control State - when tag removal button focused)
remove the focused tag (only applicable to controls with the tags property set to true)
Pressing enter when a tag removal button has focus will remove the tag from the selected values. After the tag has been removed, focus is moved to the first-available tag removal button.
(Opened Control State)
Select the currently focused option
Pressing the enter key selects the option that currently has focus. In a non-multiselect control, the dropdown will close after the selection is made.
Multiselect Specific Behaviors
(With ctrl-key or meta-key held down)
toggle selection state of the currently focused option
When the enter key is pressed along with the ctrl-key or meta-key. The currently focused option will be selected, or deselected if it was already selected when clicked
(With shift-key held down)
select a range of options from last selected to currently focused option
When the enter key is pressed along with the shift-key while a option has focus, All values in the range from the last selected option to the currently focused option will be selected.
If no option was previously selected, all options from the first option to the focused option will be selected.
deselect a range up to but not including the focused option
If the focused option has already been selected when the user clicks enter along with the shift-key, any selected options in the range between the last selected option and the focused option will be deselected. The focused option will remain selected in this case.
Pressing enter when the the control has focus will open the dropdown.
(Closed Control State - when tag removal button focused)
move focus to the next avaliable tag removal button (only applicable to controls with the tags property set to true)
Pressing tab when a tag removal button has focus will move focus to the next available tag removal button. If the focused-tag removal button is the last one available, focus will move away from the control.
(Opened Control State)
In an open control, the tab key mimics the behavior of the enter key
Pressing the up-arrow key when the dropdown is open will move focus up to the next selectable option. If the focus reaches the first option, or the search input field in a searchable control, no action will occur.
(With alt-key held down)
close the drop down
An alt-key press of the up-arrow will close the dropdown
Multiselect Specific Behaviors
(With shift-key held down)
select focused option and move focus up
If the up arrow is pressed with the shift-key in a multiselect or tags control, the focused option will be selected (or deselected if alreadySelected), and the focus will move up to the next available option.