Hiding collections? Or using different "views", i.e. different widths of three panes

Hi all,

is it possible to configure the widths of the three panes via javascript, as well as what columns are shown in the middle pane? It would be good to be able to automatically configure different views, depending on what I am doing.

Or at least how could one hide the collections pane? (And potentially hide some of the columns in the middle pane, e.g. 'date added', 'year', etc.)

Thanks!
Bjoern
  • Similar to https://forums.zotero.org/discussion/7957/add-showhide-collections-button/
  • E.g. this

    if (document.getElementById('zotero-collections-pane').style.display == "none") {
    document.getElementById("zotero-collections-pane").setAttribute("style","display:block;");
    } else {
    document.getElementById("zotero-collections-pane").setAttribute("style","display:none;");
    };

    works to hide the collections pane. However, when display is set to "block", the pane doesn't restore properly, only the tags are visible.
  • No thoughts on this?!
    :-)
Sign In or Register to comment.