1

I'm almost always most interested in the latest activity in a case, which appears at the bottom of the page. When viewing a long case on the iPhone, it takes a long time to scroll down all the way down. A "jump to bottom" link at the top of the page would be very helpful.

Using FogBugz Version 8.6.50 (DB 786, Build 0).

flag

1 Answer

1

You can have the case events sorted with the most recent ones on top! Click My Settings, then Options. Search for Case Sort and choose Show newest edits first.

Alternatively, you can add a link with a customization like this (but that won't work in the Mobile Site view):

name:          Bottom link
description:   Adds a link to jump to the page bottom
author:        Michel de Ruiter
version:       1.0.0.0

js:
if (!$('#BugEvents').length)
  return;
var wher = '.statusbar';
if ($(wher).length == 0)
  wher = '#statusbarspacer';
$('<a>').appendTo(wher).addClass('bottomlink')
.attr('href', '#safeFocus').attr('title', 'Page bottom');

css:
.bottomlink {
  background: url(styles/sprites/sprite-icons.png) no-repeat;
  background-position: 0px -9px;
  margin: 4px;
  height: 8px;
  width: 8px;
  display: block;
  float: right;
}
link|flag

Your Answer

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