Expand/collapse subcollections #357
cboulanger
started this conversation in
Ideas
Replies: 1 comment
-
Solution: /**
* Toggle "Show Items from Subcollections"
*/
if (items?.length > 0) { return; }
isRecursive=Zotero.Prefs.get('recursiveCollections')|| false; //default: false
toggleIsRecursive=!isRecursive;
Zotero.Prefs.set('recursiveCollections', toggleIsRecursive);
return 'Toggle "Show Items from Subcollections".'; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does anyone know the API for expanding and collapsing the subcollections of a collection in the collection pane and can provide an action script that would allow to toggle between "all subcollections fully expanded" and "all subcollections fully collapsed"? Thank you.
Beta Was this translation helpful? Give feedback.
All reactions