0.3.0 • Published 4 years ago

select_all v0.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

checkbox_select_all

Simple to check and uncheck checkboxes

Less file size and simple implementation


GitHub version Build Status Code Climate Issue Count

checkbox_select_all is jQuery dependent javascript for implementing 'select-all' functionality in more simple and effective way in your application.

Functionalities

  • Basic Usage - Selecting/Unselecting multiple checkboxes.
  • Multiple Seletions - Implementing more than one select-all functionalities in a page.
  • Ajax Added Checkboxes - Implementing select-all functionality to new checkboxes added by an Ajax call.
  • Show Selection/Count - Display selected checkboxes count or checkboxes remaining to select count or selected checkboxes count out of total checkboxes.

Usage

Call the function select_all() on main checkbox and add class 'selectable' to sub-checkboxes.

HTML example:

<input type="checkbox" id="selectAll">All Items</input>

<input type="checkbox" class="selectable">Item 1</input>
<input type="checkbox" class="selectable">Item 2</input>
<input type="checkbox" class="selectable">Item 3</input>

<script type="text/javascript">
    $("#selectAll").select_all();
</script>

For more usage checkout Demo

Contributing

  1. Fork it ( https://github.com/[my-github-username]/checkbox_select_all/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request
0.3.0

4 years ago