1.2.13 • Published 6 years ago
react-listbox v1.2.13
react-listbox
a double listbox react component
Installation
This package can be installed via npm
npm install react-listbox --save
Demo
Demo & Examples can be found here
Usage
import ListBox from 'react-listbox';
import 'react-listbox/dist/react-listbox.css';
const options = [
{ label: 'One', value: 1 },
{ label: 'Two', value: 2 },
{ label: 'Three', value: 3 },
];
// You can also pass the array of preselected options;
const selected = [1, 2];
onChange = selectedValues => {
// handle selected values here
};
<ListBox options={options} onChange={onChange} selected={selected} />;You can also use the browser build available in the dist folder.
<script
type="text/javascript"
src="https://unpkg.com/react-listbox@1.2.13/dist/react-listbox.min.js"
></script>
<link
rel="stylesheet"
href="https://unpkg.com/react-listbox@1.2.13/dist/react-listbox.css"
/>Other
This library was inspired by jQuery multi-select.
License
MIT Licensed. Copyright (c) Sridatta 2016.
1.2.8
6 years ago
1.2.9
6 years ago
1.2.12
6 years ago
1.2.13
6 years ago
1.2.10
6 years ago
1.2.11
6 years ago
1.2.7
7 years ago
1.2.6
7 years ago
1.2.5
9 years ago
1.2.4
9 years ago
1.2.3
10 years ago
1.2.2
10 years ago
1.2.1
10 years ago
1.2.0
10 years ago
1.1.0
10 years ago
1.0.9
10 years ago
1.0.8
10 years ago
1.0.7
10 years ago
1.0.6
10 years ago
1.0.5
10 years ago
1.0.4
10 years ago
1.0.3
10 years ago
1.0.2
10 years ago
1.0.1
10 years ago
1.0.0
10 years ago