Open GoogleCodeExporter opened 8 years ago
Interesting. I never tested in a clustered environment, but good to know it
sorta works. ;-)
Can you tell me briefly:
1. What browser/version are you using?
2. Can you paste what the JSON output looks like by hitting the RESTFul url?
http://localhost:8081/jwatch/ui?action=monitor_jobs
This is likely a client-rendering issue.
Original comment by royru...@gmail.com
on 5 Jul 2011 at 1:53
Hi I am experiencing the same issue as described here. I am using quartz 2.0.2,
apache-tomcat 6.0.33. Do you have a solution or an idea where to look for this.
Tested Firefox 6 and Internet Explorer 8 with same results.
Thanks,
Torsten
Original comment by tglu...@gmail.com
on 12 Oct 2011 at 6:38
Here is the json result.
Original comment by tglu...@gmail.com
on 12 Oct 2011 at 6:45
Attachments:
I run in the same issue. In my case problem was e.g. a date 04/26/12 15:29:00
EEST. Reason is that javascript date.parse fails to parse some timezone
declarations. I fixed this by changing the date format pattern in the
Tools.java to "MM/dd/yy HH:mm:ss Z" which produces date as e.g. 04/26/12
15:29:00 +0300.
Original comment by kalle.ma...@gmail.com
on 26 Apr 2012 at 1:18
even I am also getting the same issue
Original comment by kcc...@gmail.com
on 11 Jan 2013 at 11:43
Attachments:
The date value is read by the application as a String instead a Date. When
passing the date String to the Ext.util.Format.date method the parser doesn't
understand the timezone code in the end of the String.
What I did to solve the problem temporally was remove the timezone code before
parsing the date String.
I did something like:
function removeTimeZone(input) {
var patt = '\\d+/\\d+/\\d+\\s\\d+:\\d+:\\d+';
return input.match(patt);
}
So, the String '11/12/13 17:58:03 BRST' becomes '11/12/13 17:58:03' and the
parsing works like a charm.
I'll commit this fix in my fork at GitHub
(https://github.com/lucassaldanha/jwatch).
Original comment by lucas.sa...@cortex-intelligence.com
on 12 Nov 2013 at 9:14
Original issue reported on code.google.com by
jeremie....@gmail.com
on 1 Jul 2011 at 8:44Attachments: