0.6.0 • Published 6 years ago
angularjs-bootstrap-multiselect v0.6.0
angular-bootstrap-multiselect
A multiselect dropdown list for AngularJS styled to fit the Twitter Bootstrap standard design
Screenshot:
Originally created by Amitava Saha (https://github.com/amitava82/angular-multiselect)
Installation via Bower/NPM:
$ bower install angular-bootstrap-multiselect --save
$ npm install angularjs-bootstrap-multiselect --save
$ yarn add angularjs-bootstrap-multiselect
Usage:
Add "ui.multiselect" to your modules list. Then you can use it like follows:
<multiselect
ng-model="selectModel"
options="c for c in selectOptions" // use ... c.name for c in ... for objects
data-multiple="true" // true for multi-select mode
data-compare-by="id" // set key to compare objects, otherwise is has to be equal to options
data-header-key="header" // Key which marks headers in the objects list
data-divider-key="divider" // Key which marks dividers in the objects list
scroll-after-rows="5" // Show scroll bar after 5 rows
filter-after-rows="5 // Show filter input after 5 rows
max-width="100" // The maximum width of the multiselect dropdown button
tabindex="-1"> // tabindex setting for dropdown
</multiselect>
See index.html and app.js for examples and how it works.
Testing:
Start web server e.g. via Python:
$ python -m SimpleHTTPServer 8000
Start Karma E2E tests (has to be installed globally before):
$ karma start
License
Copyright (c) 2017 Sebastian Hammerl, Getslash GmbH
Copyright (c) 2014 Amitava Saha
Licensed under the MIT License
0.6.0
6 years ago