Open kaibs opened 5 days ago
I was just about to open the exact same issue. For me a "select all" button would suffice, but having the possibility to select multiple items in a row with the usual shortcuts would be even better.
For now i use a js snippet in the browser console to select all checkboxes on the page as a workaround, maybe this helps someone else until this feature gets some attention:
document.querySelectorAll('[name="btSelectItem"]').forEach(function(e) {
e.checked = true;
e.dispatchEvent(new Event('click'));
});
First, I want to thank you for this great project. It really is a very nice improvement over the “stock” calibre-web!
Is your feature request related to a problem? Please describe.
Describe the solution you'd like