or
Key Value
Response HTTP/1.1 200 OK
Server Apache-Coyote/1.1
X-Powered-By Servlet 2.4; JBoss-4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)/JBossWeb-2.0
X-UA-Compatible IE=EmulateIE7
X-ABC-XYZ-ERROR -34
Cache-Control no-cache, no-store
Content-Type text/html;charset=UTF-8
Transfer-Encoding chunked
Date Sun, 10 Jun 2012 22:34:54 GMT
valueAxis: {
labels: {
template:
"#Math.abs(value)#"
}}
documentElement = xml.documentElement || $.parseXML(xml).documentElement;
documentElement
= xml.documentElement
|| ( xml.substr(0,5)==
'<?xml'
? $.parseXML(xml).documentElement
: jQuery.error(
"Invalid XML: "
+ xml )
)
;
I think I have found a typo in your code, which leads to the problems with animation.
extend(kendo.fx, {
...
animate: function(elements, properties, options) {
element.animate(multiple, extend({ queue: false, show: false, hide: false, duration: options.duration, complete: options.complete }));
...
The extend(...) call works as if it's called with window.extend(...), which extend window object with some properties.
I'm not sure that it's what you have expected to do.
Please confirm.