1

How do I change my workflow so that after I edit a case, the next screen is the list of bugs, not the detail page of the case I just edited.

Why? I know what I typed, I carefully looked at every field before I clicked "ok", I don't need to see the same information again, I want to move on and edit more cases.

Is there a plugin for this? Is it hidden in the Workflow area somewhere?

Thanks

flag
How does bulk-editing apply to you question? fogbugz.stackexchange.com/questions/1030#1031 – Michel de Ruiter Oct 17 at 19:40

1 Answer

1

I don't think you can do that. The only thing that comes close is this user option:

Close Case Action: Redirect to current filter after closing
Determines whether or not you are redirected to
your current filter after closing a case.

But for general edits, no.


Edit: I made up this customization to do what you want:

name:          List after Edit
description:   After a successful edit, return to the case list
author:        Michel de Ruiter
version:       1.0.0.0

js:

if (window.clickBugSubmit)
  window.clickBugSubmit = (function(fnOrig) {
    return function(e, elForm, fXMLSubmit, sValue, bOK) {
      var r = fnOrig.apply(this, arguments);
      if (bOK)
        document.location = $("#Menu_List").attr("href");
      return r;
    };
  })(window.clickBugSubmit);
link|flag
This is amazing! Every day I learn something amazing about FogBugz. Of course, I've only been using it since last Friday. Unfortunately, I installed and enabled this, but when I both open and edit a ticket, then click ok it still returns me to the detail page. How should I debug this? FireBug? – Robert Oct 14 at 5:57
@Robert I use Chrome and its JavaScript console. For me it works with IE as well, but I don't have Firefox to test. Let me know what to fix, everyone! – Michel de Ruiter Oct 14 at 12:48
@Robert: I used it for a few days (just because I can :-> ) but now I often find myself re-opening the case (Starred, Recent) after it closed on Edit... – Michel de Ruiter Oct 17 at 19:38

Your Answer

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