6

1

Is there a way to have the hierarchy tree expanded by default so that it is easy to navigate down the tree with one click?

Fog Creek Case FC2010330

flag
Duplicate of: fogbugz.stackexchange.com/questions/6531/… – danielm May 10 2011 at 16:54
@danielm: this question is about the Page Hierarchy link (under PAGE COLLECTIONS), whereas I think you mean the HIERARCHY list shown by default. Personally, I think the Page Hierarchy is the place to show the full hierarchy. IMHO the HIERARCHY should show more by default, but not necessarily all. – Michel de Ruiter May 19 2011 at 19:12

3 Answers

1

I also think the Page Hierarchy tree should be expanded by default.

Until FogBuz does that, I managed to fix it using the following BugMonkey customization:

name:          Expand Wiki Hierarchy
description:   To completely expand the Page Hierarchy page by default
author:        Michel de Ruiter
version:       1.0.0.0

js:

(function() {
  var f = function() {
    var arr = $('#wikiViewContent img.expando:visible[src$="arrow-right.png"]');
    if (!arr.length) return;
    arr.click();
    setTimeout(f, 500);
  };
  setTimeout(f, 500);
})();
link|flag
Works a treat, thanks! – Dave Hodder Apr 3 at 10:39
0

I've filed this feature request. Please vote it up if you want the same functionality.

link|flag
0

Has this feature request been implemented? Seems to me like all cases expand by default.

While I understand when this is useful, it does not work well for managers who want to get an overview of active projects, milestones and tasks.

Filed this feature request to solve this conflict.

link|flag
1 
The question is about the Page Hierarchy page of the Wiki, not about the cases list. – Michel de Ruiter May 13 2011 at 12:33

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.