Create a simple list with icon checkboxes.
- Select and Multi-select with select all
- jQuery not required
Install it using bower:
bower install angular-simple-select
Adding your dependency to your project:
angular.module('myModule', ['simple-select']);
Using it in your view:
<div simple-select
multiSelect=true
item-ticked="active"
item-disabled="disabled"
item-unavailable="unavailable"
item-name="name"
on-tick-all="selectAll(data)"
on-item-click="selectItem(data)"
clicked-item="clickedItem"
collection="myCollection">
{{item.name}}
</div>
- Added Readme
- Integrated travisCI and coveralls
- Added another item state
itemUnavailable
, which only shows visual changes
- Fixed tick all functionality
- Fixed destination copy directory
- Added Multi-select feature with select all
- Initial release
The license is available within the repository in the LICENSE file.