Why do resolved cases have a Resolve button? - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com2013-05-25T05:57:47Zhttp://fogbugz.stackexchange.com/feeds/question/10857http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://fogbugz.stackexchange.com/questions/10857/why-do-resolved-cases-have-a-resolve-buttonWhy do resolved cases have a Resolve button?Michel de Ruiter2012-10-11T09:34:52Z2012-10-12T07:18:34Z
<p>I noticed that resolved (but open) cases have a <strong>Resolve</strong> button. Why is that? So users can <a href="http://fogbugz.stackexchange.com/questions/2314/should-i-need-to-reactivate-cases-before-re-resolving-them/2324#2324" rel="nofollow">change the resolution status</a>?</p>
<p>I find it confusing. Users can <strong>Edit</strong> to change the status, isn't that enough?</p>
http://fogbugz.stackexchange.com/questions/10857/why-do-resolved-cases-have-a-resolve-button/10858#10858Answer by db for Why do resolved cases have a Resolve button?db2012-10-11T12:35:23Z2012-10-11T12:35:23Z<p>The <strong>Resolve</strong> button is there so you can easily re-resolve a case with a different status.</p>
<p>While the <strong>Edit</strong> button does allow you to change the status of a resolved case, as you mention, clicking the <strong>Edit</strong> button puts your focus into the comment textbox, while clicking <strong>Resolve</strong> focuses the status droplist directly. It's not a huge difference, but it's helpful depending on what you're trying to do. Especially if you're trying to navigate around FogBugz quickly using its keyboard shortcuts.</p>
http://fogbugz.stackexchange.com/questions/10857/why-do-resolved-cases-have-a-resolve-button/10865#10865Answer by Michel de Ruiter for Why do resolved cases have a Resolve button?Michel de Ruiter2012-10-12T07:18:34Z2012-10-12T07:18:34Z<p>It's <a href="http://fogbugz.stackexchange.com/questions/10857/why-do-resolved-cases-have-a-resolve-button/10858#10858" rel="nofollow">by design</a>, but we disagree enough to fix it using this customization:</p>
<pre><code>name: Hide re-Resolve
description: Hides the Resolve buttons for resolved cases
author: Michel de Ruiter
version: 1.0.0.0
js:
function hideResolve() {
if ($('.status.resolved').length)
$('a.resolve').remove();
}
hideResolve();
$(window).on('BugViewChange', hideResolve);
</code></pre>