Actions
Feature #4467
closed[Workbench] Add "select all" button to project content panes
Status:
Resolved
Priority:
Normal
Assigned To:
Radhika Chippada
Category:
Workbench
Target version:
Start date:
05/06/2015
Due date:
% Done:
0%
Estimated time:
(Total: 0.00 h)
Story points:
0.5
Description
("If we can do it inside of a data collection, can we do it inside of a project?")
Updated by Bryan Cosca about 10 years ago
for example, what if we want to merge x collections within a project. If regex search functionality also worked, that would be great.
Updated by Tom Clegg about 10 years ago
- Subject changed from Select all data collections within a project to [Workbench] Add "select all" button to project content panes
- Description updated (diff)
- Category set to Workbench
- Target version set to Arvados Future Sprints
Updated by Tom Clegg over 9 years ago
- Target version changed from Arvados Future Sprints to 2015-05-20 sprint
Updated by Radhika Chippada over 9 years ago
- Assigned To set to Radhika Chippada
Updated by Radhika Chippada over 9 years ago
- Status changed from New to In Progress
Updated by Peter Amstutz over 9 years ago
The onclick
methods are named select_all_files()
and unselect_all_files()
, however they are not selecting files. Please rename.
Could we make the select_all
and unselect_all
methods generic, move them into assets/javascript, and use the same method for both the collections and projects page? For example:
function select_all_items(selector) { $(selector).find(":checkbox").filter(":visible").prop("checked", true).trigger("change"); }
<button id="select-all" type="button" class="btn btn-default" onClick="select_all_files('.arv-project-contents')">Select all</button>
Updated by Radhika Chippada over 9 years ago
Peter: yes, moving into js and reusing this code is a good idea. Updated accordingly. Thanks.
Updated by Radhika Chippada over 9 years ago
- Status changed from In Progress to Resolved
- % Done changed from 0 to 100
Applied in changeset arvados|commit:dc0237c289882a058a0d5c91b720a4b37917bc9d.
Actions