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); } }); });
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Row Select Feature’ is closed to new replies.