🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

bulkjs

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bulkjs

manager for multiple selection.

latest
Source
npmnpm
Version
0.1.7
Version published
Maintainers
1
Created
Source

bulkjs

base for a manager for multiple selection.

Example

// the api.
var bulkAction = bulk(scope, {
    // toId maps the object from the data source,
    // to the unique id in the list.
    toId: function(x) {
        return x.uuid;
    },
    // updates will always be executed for any change,
    // except when settings the 'dataSource'.
    update: function(scope, event, eventName) {
        // get the list of selected ids.
        var selected = scope.bulkAction.list();

        // if not 'all', unmark the all checkbox.
        if (!scope.bulkAction.all()) {
            all[0].checked = '';
        } else {
            all[0].checked = 'checked';
        }

        // mark as checked if the uuid is in the selected list.
        scope.collection.map(function(o, k) {
            var checked = selected.indexOf(o.uuid) > -1;
            o.content.checked = checked ? 'checked' : '';
        });
        // display info.
        if (scope.bulkAction.all()) {
            sl.html("all");
        } else {
            if (selected.length > 0) {
                sl.html(selected.join(","));
            } else {
                sl.html("none");
            }
        }
    }
});

Keywords

inputs

FAQs

Package last updated on 22 Apr 2016

Did you know?

Socket

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.

Install

Related posts