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.
|
2
|
||||
|
|
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:
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! |
|||
|
|