2

Is it possible to configure FogBugz 7 so that all cases are listed by default, either for the entire site or for a single user? Alternatively, is it possible to increase the default number of cases listed? I am currently bookmarking the URL that includes bIgnoreMax=1, but would appreciate a more elegant solution. Thanks.

flag
This doesn't scale well - we have almost 10 000 cases, and it takes a lonnnng time to retrieve and render them all at once. Also, when eventually displayed, IE is very slow. Firefox handles this many cases better, but displaying all cases can place huge demands on your browser. – James McLeod Apr 5 2010 at 11:37

1 Answer

2

Create an "All cases" filter and set the cases per page to 0 (i.e., max). Save it. There is a hard-coded cap at 200 cases per page. If you really want to exceed this, read on.

The 200 case limit is hard-coded so that people don't think FogBugz is timing out when instead they have constructed a query that returns a lot more cases than they think it should.

If you want to change the limiting number of cases displayed by default from 200, you will have to change the file CBugList.was. Look for the function GetListQuery, a few lines in will be the line:

If cMaxRecords < 1 Or cMaxRecords > 200 Then cMaxRecords = 200

Change 200 to 500 (or whatever) in both places, and that will be the new hardcoded limit. Make sure you run build.bat in the FogBugz directory to compile your changes!

link|flag

Your Answer

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