4

From @LaurenceTucker:

I wish Fogbugz had a one click way of putting all the comments into chronological instead of reverse order for when reading up on a case.

flag

1 Answer

9

There is, using a little BugMonkey script:

name:          Reverse BugEvents
description:   Temporarily switches BugEvent order
author:        Tyler Hicks-Wright
version:       1.1.0.0

js:

var be = $('#BugEvents');
if (be.length > 0) {
  var wher = '.statusbar';
  if ($(wher).length == 0) {
    wher = '#statusbarspacer';
  }
  $('<a>').appendTo(wher).addClass('TGHW_BugEventOrder')
  .attr('href', 'javascript:void(0);').attr('title', 'Reverse events')
  .click(function() {
    $('#BugEvents .bugevent, #BugEvents .pseudobugevent')
    .each(function(i, e) { be.prepend($(e).remove()); });
  });
}


css:

.TGHW_BugEventOrder {
  background: url(https://tghwmedia.appspot.com/media/hwnet/img/ui-accordion.png) no-repeat;
  height: 16px;
  width: 16px;
  display: block;
  float: right;
}

This puts a small icon alt text at the top right of the page. When you click it, the order of bug events will reverse. Click it again to restore. Note that it does not change your default order setting, so if you reload the page, or view another bug, the order will be restored.

link|flag
I edited it to also work for anonymous users: fogbugz.stackexchange.com/questions/8420/… – Michel de Ruiter Jul 6 at 8:31

Your Answer

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