5

The case view shows the left and right arrows at the top and bottom of the case, but grid view only shows the list all and next / prev links in the summary box at the bottom. It would be convenient for them to appear at the top as well.

Fog Creek Case FC1888018

flag

2 Answers

1

We have a case open to consider this feature for a future release. Please up-vote this question to show your support for adding this feature.

link|flag
1

Using a BugMonkey customization, this is easy to add. For example:

name:          Top All/Prev/Next links
description:   Adds All, Prev and Next links to the top of the case list
author:        Michel de Ruiter
version:       1.1.0.0

js:

$('#fbsidebar a').parent().clone().wrapInner('<div>').children().unwrap()
.wrapAll('<td id="xlinks">').parent().insertAfter('#listTitle');

css:

#xlinks div {
  white-space: nowrap;
  font: 11px Verdana;
  color: black;
}
link|flag

Your Answer

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