We like queues with drawers to categorize queue items.
For top-level queues where the only on-click action is open/close drawer, here’s two simple one-line snippets we’re using to expand and collapse all:
expand:
skuid.$('#CategoryQueue').find('.nx-list-contents:first').children('.nx-queue-item').not('.nx-item-has-drawer').click();
collapse:
skuid.$('#CategoryQueue').find('.nx-list-contents:first').children('.nx-item-has-drawer').click();


