Select api

Overview
API
Theme
Examples

NbSelectComponent

Inputs

NameTypeDescription
appearanceNbSelectAppearance

Select appearances: outline (default), filled, hero

optionsListClass

Specifies class to be set on nb-options container (nb-option-list)

optionsOverlayOffsetnumber

Determines options overlay offset (in pixels).

optionsPanelClass

Specifies class for the overlay panel with options

placeholderstring

Renders select placeholder if nothing selected.

scrollStrategyNbScrollStrategies

Determines options overlay scroll strategy.

shapeNbComponentShape

Select shapes: rectangle (default), round, semi-round

sizeNbComponentSize

Select size, available sizes: tiny, small, medium (default), large, giant

statusNbComponentOrCustomStatus

Select status (adds specific styles): basic, primary, info, success, warning, danger, control

compareWithNbSelectCompareFunction

A function to compare option value with selected value. By default, values are compared with strict equality (===).

disabledboolean

Disables the select

filledboolean

Adds filled styles

fullWidthboolean

If set element will fill its container

heroboolean

Adds hero styles

multipleboolean

Gives capability just write multiple over the element.

outlineboolean

Adds outline styles

selectedany

Accepts selected item or array of selected items.

Outputs

NameTypeDescription
selectedChangeEventEmitter<any>

Will be emitted when selected value changes.

Properties

NameTypeDescription
customLabelany

Custom select label, will be rendered instead of default enumeration with coma.

optionsQueryList<NbOptionComponent>

List of NbOptionComponent's components passed as content. TODO maybe it would be better provide wrapper

overlayPositionNbPosition

Current overlay position because of we have to toggle overlayPosition in [ngClass] direction and this directive can use only string.

portalNbPortalDirective

NbCard with options content.

queueany

If a user assigns value before content nb-options's rendered the value will be putted in this variable. And then applied after content rendered. Only the last value will be applied.

selectionModelNbOptionComponent[]

List of selected options.

hostWidthnumber

Returns width of the select button.

isHiddenboolean

Determines is select hidden.

isOpenboolean

Determines is select opened.

selectionViewany

Content rendered in the label.

Methods

NameDescription
emitSelected()
parameters: selected: any
returns:void

Propagate selected value.

handleMultipleSelect()
parameters: option: NbOptionComponent
returns:void

Select for multiple options.

handleOptionClick()
parameters: option: NbOptionComponent
returns:void

Selects option or clear all selected options if value is null.

handleSingleSelect()
parameters: option: NbOptionComponent
returns:void

Select single option.

onChange()
returns:void

Function passed through control value accessor to propagate changes.

reset()
returns:void

Deselect all selected options.

selectOption()
parameters: option: NbOptionComponent
returns:void

Determines how to select option as multiple or single.

selectValue()
parameters: value: any
returns:void

Selects value.

setSelection()
parameters: value: any
returns:void

Set selected value in model.

trySetTouched()
returns:void

Sets touched if focus moved outside of button and overlay, ignoring the case when focus moved to options overlay.

NbOptionGroupComponent

Methods

NameDescription
asyncUpdateOptionsDisabledState()
returns:void

Updates options disabled state after promise resolution. This way change detection will be triggered after options state updated. Use this method when updating options during change detection run (e.g. QueryList.changes, lifecycle hooks).

updateOptionsDisabledState()
returns:void

Sets disabled state for each option to current group disabled state.

Radio
Previous page
Autocomplete
Next page

Need some help or found an issue?

Ask on Stack Overflow with tag `nebular` or post an issue on GitHub.