Hi Steve,
Finally I managed to reproduce this issue :-)
It's actually I bug, and we've just fixed it so the fix will be included in
the next release.
In the meantime you can use the attached patch
you can apply the patch (on unix machines) by executing this command from
the agilo top folder:
patch -p0 -i /path/to/filter_bug.diff
Hope this helps
Cheers
Stefano
On Monday, June 25, 2012 6:34:53 PM UTC+2, SteveRC1 wrote:
>
> There are no shown errors in the console.
> It is easy to reproduce if you run the 1.3.8 appliance in Oracle
> VirtualBox with no changes?
> see attached png
> I would be happy to try anything else to help resolve this as it affects
> all the users on a daily basis.
>
> Thanks,
>
> Steve
>
> On Monday, 25 June 2012 03:39:12 UTC-4, Stefano Rago wrote:
>>
>> Hi Steve,
>>
>> On Jun 20, 2012, at 10:49 PM, SteveRC1 wrote:
>>
>> attached a short movie demo
>>
>>
>>
>> Thanks a lot for the video, but unfortunately I still couldn't reproduce
>> the issue.
>> Do you see any error in the javascript console when updating the
>> remaining time with the filter on?
>>
>> Cheers
>>
>>
>> Stefano Rago
>>
>
--
Follow Agilo on Twitter: http://twitter.com/agilofortrac
Please support us by reviewing and voting on:
http://userstories.com/products/8-agilo-for-scrum
http://ohloh.net/p/agilo-trac
http://freshmeat.net/projects/agiloforscrum
You have received this message because you are subscribed to
the "Agilo for Trac" Google Group. This group is focused on
supporting Agilo for Trac users and is moderated by
Agilo Software GmbH <http://www.agilosoftware.com>.
To post to this group, send email to [email protected]
To unsubscribe from this group, send an email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/agilo
Index: agilo/scrum/backlog/htdocs/js/backlogView.js
===================================================================
--- agilo/scrum/backlog/htdocs/js/backlogView.js
+++ agilo/scrum/backlog/htdocs/js/backlogView.js
@@ -121,7 +121,7 @@
new TotalsRowController().recalculateTotals();
// this is needed to hide tickets that might have been closed during editing
- new FilterController().applyFiltering();
+ Agilo.filterController.applyFiltering();
}.bind(this));
}
@@ -314,17 +314,18 @@
});
+var Agilo = Agilo || {};
+
$(function(){
new TotalsRowController().recalculateTotals();
+ Agilo.filterController = new FilterController();
- var filterController = new FilterController();
-
- filterController.initializeFilter();
+ Agilo.filterController.initializeFilter();
var ticketViewUpdater = new TicketViewUpdater();
var dragManager = new DragManager();
- var commitmentConfirmation = new agilo.CommitmentConfirmation(filterController.loader);
+ var commitmentConfirmation = new agilo.CommitmentConfirmation(Agilo.filterController.loader);
commitmentConfirmation.addToDOM();
var csvExportButtonOptions = {