Page MenuHomePhabricator

Select all checkbox in CodeRevisionListView
Open, LowestPublicFeature

Description

There is no way to check all revisions in a list for mass state change (deferred etc)


Version: unspecified
Severity: enhancement

Details

Reference
bz25629

Event Timeline

bzimport raised the priority of this task from to Lowest.Nov 21 2014, 11:13 PM
bzimport set Reference to bz25629.
bzimport added a subscriber: Unknown Object (MLST).

Bookmarklet:

javascript:function check_all_in_document(doc){var c=new Array();c=doc.getElementsByTagName('input');for(var i=0;i<c.length;i++){if(c[i].type=='checkbox'){c[i].checked=true;}}}check_all_in_document(window.document);for(var j=0;j<window.frames.length;j++){check_all_in_document(window.frames[j].document);}

;-)

There's a script on wmf wikis to select a range of checkboxes by clicking one, holding shift, and clicking another one, resulting in those two and all checkboxes in between to be checked (or unchecked).

A button to select the entire colomn sounds cool though :D

Workaround: click first, hold shift, click last.

Guessing "Lowest" reflects better the reality of this report. Feel free to correct.

Aklapper changed the subtype of this task from "Task" to "Feature Request".Feb 4 2022, 11:02 AM
Aklapper removed a subscriber: wikibugs-l-list.