
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
ovh-angular-checkbox-table
Advanced tools

angular.module("app", ["ovh-angular-checkbox-table"]);
<table class="table table-pretty table-hover table-striped">
<thead>
<tr>
<th class="text-center" style="width: 35px;">
<input type="checkbox"
data-ovh-checkbox-table
data-ovh-checkbox-table-ids-all="table.myAllIds_canBeFiltered"
data-ovh-checkbox-table-ids-page="table.myIdsOnCurrentPage"
data-ovh-checkbox-table-ids-selected="table.myIdsSelectedByCheckbox"
data-ovh-checkbox-table-id="id" />
</th>
<th>
name
</th>
</tr>
</thead>
<tbody data-ng-hide="table.myAllIds_CAN_NOT_BE_Filtered">
<tr data-ng-repeat="myData in table.myIdsOnCurrentPage">
<td>
<input type="checkbox" data-ng-model="table.myIdsSelectedByCheckbox[myData.id]"
name="{{::'prefix_' + myData.id}}" id="{{::'prefix_' + myData.id}}">
</td>
<td data-title="name" class="word-break">
<label for="{{::'prefix_' + myData.id}}"
data-ng-bind="::myData.name">
</label>
</td>
</tr>
</tbody>
</table>
bower install --save ovh-angular-checkbox-table
npm install --save ovh-angular-checkbox-table
git clone https://github.com/ovh-ux/ovh-angular-checkbox-table.git
cd ovh-angular-checkbox-table
npm install && bower install
You've developed a new cool feature ? Fixed an annoying bug ? We'd be happy to hear from you !
Have a look in CONTRIBUTING.md
npm test
ovh-checkbox-table : directive
ovh-checkbox-table-ids-all="table.myAllIds_canBeFiltered" : array (string, int UNIQUE) of ids. Can be filtred
ovh-checkbox-table-ids-page="table.myIdsOnCurrentPage" : array (object) ids detail
ovh-checkbox-table-ids-selected="table.myIdsSelectedByCheckbox" : array (object<id, true>) of selected line by checkbox
ovh-checkbox-table-id="id" : (string) unique key of ids detail
data-ng-model="table.myIdsSelectedByCheckbox[myData.id]"
See https://github.com/ovh-ux/ovh-angular-q-allSettled/blob/master/LICENSE
FAQs
Multi checkbox management for table
The npm package ovh-angular-checkbox-table receives a total of 0 weekly downloads. As such, ovh-angular-checkbox-table popularity was classified as not popular.
We found that ovh-angular-checkbox-table demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.