6

I would like to have fewer than seven priorities. Is there a way I can do this?

flag

2 Answers

4

It doesn't look like there's a way (at least in the GUI) to do this. You could try removing records from the Priority table in the database but I'm not sure if that would cause FogBugz problems.

See also Michael Pryor's answer to: Removing Default Priorities.

link|flag
2

Here's a way to do it in BugMonkey:

name:          Limit priorities
description:   Enables you to limit the options in the priority dropdown
author:        Rob Sobers
version:       1.0.0.0

js:

// note: any cases that already have a priority that is
// outside the range you define will default to priority 1
// when the case is edited
(function limitPriorities(limit) {
    $('select#ixPriority option').each(function() {
        if (this.value > limit) {        
            $(this).remove();
        }
    });
    DropListControl.refresh($('select#ixPriority')[0]);
})(3);
$(window).bind("BugViewChange", function() {
    limitPriorities(3);
});
link|flag

Your Answer

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