drag-check-js icon indicating copy to clipboard operation
drag-check-js copied to clipboard

Library for checking multiple checkboxes by click-and-dragging over them. Paint your selection!

Results 4 drag-check-js issues
Sort by recently updated
recently updated
newest added

When using onChange like described in README.md: ``` onChange: function(element) { $(element).closest('td').css('background-color', element.checked ? '#73B355' : '#FFFACD'); } ``` The function is only triggered after dragging, not on click. It...

.dragCheck() doesn't return self (the jQuery object) so it's not possible to chain calls: `$(':checkboxes').dragCheck().css(...); is not possible, but should be` `$(':checkboxes').css().css(...); allows chaining (good example)`

The library checks / unchecks hovered readonly / disabled checkboxes which are not changeable on click. I think this should a) not be the case at all (exclusion by default),...

Is there any way to use dragcheck with jquery on function? http://api.jquery.com/on/ I'm using drag check on an angular app and a huge amount of my checkboxes are dynamically generated...