Gathering detailed insights and metrics for react-bootstrap-multiselect-fixed-filter
Gathering detailed insights and metrics for react-bootstrap-multiselect-fixed-filter
Gathering detailed insights and metrics for react-bootstrap-multiselect-fixed-filter
Gathering detailed insights and metrics for react-bootstrap-multiselect-fixed-filter
A multiselect component for react (with bootstrap). This is a react port of bootstrap-multiselect.
npm install react-bootstrap-multiselect-fixed-filter
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
101 Commits
1 Watchers
10 Branches
1 Contributors
Updated on Apr 27, 2018
Latest Version
1.0.3
Package Id
react-bootstrap-multiselect-fixed-filter@1.0.3
Unpacked Size
312.51 kB
Size
68.13 kB
File Count
20
NPM Version
3.10.8
Node Version
6.9.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
3
A multiselect component for react (with bootstrap). This is a react wrapper around an existing jQuery/bootstrap library (it is not a pure react port):
Install the module with: npm install --save react-bootstrap-multiselect
Create your module (you need to use something like browserify to build)
1var React = require('react'); 2var Multiselect = require('react-bootstrap-multiselect'); 3var someReactComponent = React.createClass({ 4 render: function () { 5 return ( 6 <Multiselect /> 7 ); 8 } 9});
1<link rel="stylesheet" href="bootstrap-multiselect.css" type="text/css" />
React 13 users should use react-bootstrap-multiselect v0.6.0
React 14 users should use react-bootstrap-multiselect v1.0.2
React 15 users should use react-bootstrap-multiselect v2.x.x
In case this.state.myData
changes from outside of multiselect component, values and checkbox state will not update automatically. If you want to sync state, you have to call .syncData()
on multiselect like in example below.
1 2var React = require('react'); 3var Multiselect = require('react-bootstrap-multiselect'); 4 5var someReactComponent = React.createClass({ 6 getInitialState: function(){ 7 var that = this; 8 $("element").on("event", function(){ 9 $.get("new-data-from-url", function(newData){ 10 that.setState(newData); 11 12 // to sync manually do 13 that.refs.myRef.syncData(); 14 }); 15 }); 16 17 return { 18 myData : [{value:'One',selected:true},{value:'Two'}] 19 }; 20 }, 21 render: function () { 22 return ( 23 <Multiselect onChange={this.handleChange} ref="myRef" data={this.state.myData} multiple /> 24 ); 25 } 26});
For in depth documentation, see the original bootstrap-multiselect project page.
Copyright (c) 2014 skratchdot
Uses the original bootstrap-multiselect license.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More