mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:49:01 +02:00
layers: leave drop-down filter box open when ticking/unticking items
This allows users to easily tick and untick several items at once without having to drop the filter box down multiple times. Thanks to Belen for this snippet. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
parent
4ec2431fe3
commit
3dfca5a250
1
TODO
1
TODO
|
@ -11,7 +11,6 @@ Later:
|
|||
* All-branch search/results so you can see version availability of recipes in all branches at once?
|
||||
* Rawrecipes branch support
|
||||
* Display no-results found message when search does not return any results (all tables)
|
||||
* Change behaviour of filter menus to stay open so that you can check / uncheck multiple items
|
||||
* Show layer type in layer detail?
|
||||
* Usage links in list page?
|
||||
* Subdirs in list page?
|
||||
|
|
|
@ -136,6 +136,10 @@
|
|||
$.uiTableFilter( theTable, this.value );
|
||||
})
|
||||
|
||||
$('.dropdown-menu input, .dropdown-menu label').click(function(e) {
|
||||
e.stopPropagation();
|
||||
})
|
||||
|
||||
$('#filter-form').submit(function(){
|
||||
theTable.find("tbody > tr:visible > td:eq(1)").mousedown();
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue
Block a user