Re: 5.0.13 IE javascript error

2008-07-26 Thread Alex.Hon
Maybe you can try uninstall all IE plugins .(and need clear all cache ,temp files..) Joachim Van der Auwera wrote: > > Hi, > > after upgrade of my application to tapestry 5.0.13 I get a "unknown > runtime error" on loading the page in IE. > > This is reported at line 2403 of prototype.js on

Re: Probable zone update bug

2008-04-24 Thread Alex.Hon
https://issues.apache.org/jira/browse/TAPESTRY-2369 Peter Stavrinides wrote: > > Hi All, > > A colleague of mine has discovered an anomaly with the the latest t5 > snapshot, it came up from April 23's nightly build jars. Here's a simple > example where this happens. If the action link is moved

Re: Form with a Zone -> ComponentEventException

2008-04-23 Thread Alex.Hon
Maybe because IE you need edit tapestry.js about linkZone:function... element.onsubmit = handler; replace to: Event.observe(element, 'submit', handler); and element.onclick = handler; replace to:Event.observe(element, 'click', handler); and need add line :Event.stop(event); after new Ajax.Request

T5: Zone in Component bug

2008-03-25 Thread Alex.Hon
Hi, When i use zone in component , the json response is : Tapestry.initializeZones([{\"div\":\"output:118e6af4fe4\"}], [[ \"form:118e6af4fe4\",\"output\"]]);","content": .. there should be: Tapestry.initializeZones([{\"div\":\"output:118e6af4fe4\"}], [[ \"form:118e6af4fe4\",\"o

Re: Zone Component & update Grid

2008-03-25 Thread Alex.Hon
Yes, It's an absolutely great feature! :clap: Moritz Gmelin wrote: > > Hi, > > I just tried the new Zone component which is just about great! > > But when I tried to return a Block from my ActionListener that > contains a Grid, I get the following Exception > > org.apache.tapestry.runtime.

Re: T5.0.7: No service implements the interface org.slf4j.Logger

2008-02-01 Thread Alex.Hon
see: http://www.nabble.com/About-Slf4j-Error-td13591128.html#a15240195 http://www.nabble.com/About-Slf4j-Error-td13591128.html#a15240195 Franz Amador wrote: > > This used to work, but now it's broken for me in 5.0.6 and 5.0.7. I'm not > sure how to debug this. Apparently a proxy is being cre

Re: About Slf4j Error

2008-02-01 Thread Alex.Hon
Hello, I know the error,because of jetty6 use slf4j,and the WebAppContext`s _parentLoaderPriority default value is false [code]_parentLoaderPriority = Boolean.getBoolean("org.mortbay.jetty.webapp.parentLoaderPriority");[/code] so set parentLoaderPriority to true; jetty.xml: