3

When you click My Settings > Working Schedule you are brought to a screen that allows you to enter % time working on FogBugz tasks (based on the project level, as well as "all other FogBugz tasks"). I find this to be a great feature that I use regularly. However, when you click the edit icon for any of the projects, the pop-up window that displays is very unresponsive. It often takes 5 seconds for it to visible and another couple of seconds before I can actually enter any characters.

Has anyone else had this issue and found a work-around?

I'm using Firefox 3.0.17, but have also tried it on Firefox 3.5.x and IE 6.0 with the same issue. I did notice that the IE 6.0 was slightly faster, surprisingly.

Thanks

PS - FogBugz Version 7 (server is running on linux, client is running on WinXP box).

Fog Creek Case FC1841179

flag

1 Answer

3

This has been fixed and the update will go out with the next version of FogBugz (should be 7.2.X where X > 16).

In the meantime, the fix can be applied manually by following these steps:

  1. Navigate to your FogBugz website folder (should be something like C:\Program Files (x86)\FogBugz\website on a Windows server).
  2. Rename editableTable.compressed.js to editableTable.compressed.backup.
  3. Make a copy of editableTable.js and save it as editableTable.backup.
  4. Rename editableTable.js to editableTable.compressed.js (the contents don't actually need to be JS compressed, but the file name needs to pretend like they are).
  5. Open editableTable.compressed.js and modify the following line (should be near line 1151) from:

    var jrg = $("input[type!=hidden]", oDiv);

    to:

    var jrg = $("input[type!=hidden]:visible", oDiv);

  6. Clear your browser's javascript cache.

link|flag
Thanks. I can survive in the meantime (especially knowing you guys are working on it). – Jason Down Jan 29 2010 at 13:28

Your Answer

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