
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
angular-multiple-selection
Advanced tools
Simplest way to make your angular items selectable
##Installation
###Using npm
npm install angular-multiple-selection
###Using bower
bower install angular-multiple-selection
###From source
Download source from github.com
##Usage
multiple-selection.min.js file to your application<script type="text/javascript" src="multiple-selection.min.js"></script>
angular.module('app', ['multipleSelection'])multiple-selection-zone attribute to element where selectable items will be located<div class="row" multiple-selection-zone>
//Add selectable items here
</div>
multiple-selection-item attribute to each selectable item<div multiple-selection-item>Item can be selected</div>
##How it works Each selectable item has it`s own angular scope with variables
| Name | Description |
|---|---|
| isSelectable | true if element can be selected |
| isSelecting | true if element now selecting. It means it enters in selection rectangle when you dragging |
| isSelected | true if element selected |
###How to customize
ng-class to your item<div multiple-selection-item ng-class="{'selecting': isSelecting ,'selected': isSelected}"></div>
.selecting and .selected in your css.selected {
background-color: green !important;
}
.selecting {
background-color: yellow !important;
}
.select-helper {
position: absolute;
border: 1px dashed red;
background: red;
opacity: 0.2;
}
FAQs
Multiple Selection module for AngularJS
We found that angular-multiple-selection demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.