iulianraduat / react-select-material-ui

A react SELECT component based on react-select and looking like a material-ui component
MIT License
73 stars 18 forks source link

Multi-select select multiple at once #15

Closed jsmith-phoenix closed 5 years ago

jsmith-phoenix commented 5 years ago

Is it possible for the select menu to stay open until the user clicks-away? Users would like to be able to open the menu and browse through the options, selecting them all, and then hitting enter to commit the selection. Apologies, if i've missed support of this already.

iulianraduat commented 5 years ago

You need to ask the react-select component explicitly for this.

 <ReactSelectMaterialUi
        SelectProps={{
          isMulti: true,
          closeMenuOnSelect: false
        }}
      />

Now there is a storybook for this use case.