Title: Row Select Feature
Last modified: August 31, 2016

---

# Row Select Feature

 *  Resolved [unity3software](https://wordpress.org/support/users/unity3software/)
 * (@unity3software)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/row-select-feature/)
 * First, let me say that I love this plugin! I would highly recommend it to any
   developer who wants to clean up the wordpress admin for their clients.
 * I do have a feature request that would make multi selection a little more easy.
   There are many times where I need to select an entire row of options. Clicking
   each box on the entire row can quickly become time consuming. I have created 
   a javacript snippet that allows me to check all boxes of a particular row when
   I hold down the Shift key. Incorporating this into your next release would be
   a time saver for other users too. Below is the snippet:
 *     ```
       jQuery(document).ready( function($) {
   
           //adminimize helper function
           $('.settings_page_adminimize-adminimize').on('click', 'input[type="checkbox"]', function(e) {
               if (e.shiftKey) {
                 var checkstate = $(this).is(":checked");
                 //check all sibling checkboxes
           $(this).parents('tr').find('input[type="checkbox"]').prop('checked', checkstate);
               }
           });
   
       });
       ```
   
 * [https://wordpress.org/plugins/adminimize/](https://wordpress.org/plugins/adminimize/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Contributor [Frank Bueltge](https://wordpress.org/support/users/bueltge/)
 * (@bueltge)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/row-select-feature/#post-6930986)
 * Thanks for your feedback.
    I have this functionality inside my new version, currently
   ready for testing. Maybe you check it also and give me feedback?
 * see: [https://wordpress.org/support/topic/new-version-released-tests-are-welcome?replies=17](https://wordpress.org/support/topic/new-version-released-tests-are-welcome?replies=17)
 *  Plugin Contributor [Frank Bueltge](https://wordpress.org/support/users/bueltge/)
 * (@bueltge)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/row-select-feature/#post-6930992)
 * Thanks for your help on the tests.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Row Select Feature’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/adminimize_000000.svg)
 * [Adminimize](https://wordpress.org/plugins/adminimize/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/adminimize/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/adminimize/)
 * [Active Topics](https://wordpress.org/support/plugin/adminimize/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/adminimize/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/adminimize/reviews/)

## Tags

 * [Multi-Select](https://wordpress.org/support/topic-tag/multi-select/)

 * 2 replies
 * 2 participants
 * Last reply from: [Frank Bueltge](https://wordpress.org/support/users/bueltge/)
 * Last activity: [10 years, 3 months ago](https://wordpress.org/support/topic/row-select-feature/#post-6930992)
 * Status: resolved