Re: LinkSubmit doesn't work

2010-06-08 Thread paha
try to change onsubmit.call(window.document, event) to onsubmit.call(window.document, event) == undefined -- View this message in context: http://old.nabble.com/LinkSubmit-doesn%27t-work-tp28813499p28814310.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: LinkSubmit doesn't work

2010-06-08 Thread Paul Stanton
i think you mixed up the email subjects ^ ?? Radek Terber wrote: I'm sorry, I mistook in WAR's URL. the correct is http://www.gapo.cz/download/genusinum.war - To unsubscribe, e-

Re: LinkSubmit doesn't work

2010-06-07 Thread Radek Terber
I'm sorry, I mistook in WAR's URL. the correct is http://www.gapo.cz/download/genusinum.war

Re: LinkSubmit doesn't work

2010-06-07 Thread Paul Stanton
https://issues.apache.org/jira/browse/TAP5-1180 Paul Stanton wrote: After stepping through the javascript, I believe it's because the onsubmit event handler for the form is "javascript:Tapestry.waitForPage(event);" who's first line is "if (Tapestry.pageLoaded) return;". This is the equivalen

Re: LinkSubmit doesn't work

2010-06-07 Thread Paul Stanton
After stepping through the javascript, I believe it's because the onsubmit event handler for the form is "javascript:Tapestry.waitForPage(event);" who's first line is "if (Tapestry.pageLoaded) return;". This is the equivalent of "if (Tapestry.pageLoaded) return false;" when evaluated to a boo

Re: linksubmit doesn't work on localized pages

2010-03-21 Thread Ilya Obshadko
Thanks Howard, the hint really helped. I've double checkes page initialization and immediately found the problem: for non-Russian locales template logic were hiding one form which was referred from addInit (). Shoudln't be there any kind of console error in such a case? On Sun, Mar 21, 2010 at 5

Re: linksubmit doesn't work on localized pages

2010-03-20 Thread Howard Lewis Ship
I suspect you have some other JavaScript error on your page that is keeping Tapestry from initializing correctly. Use FireBug and debug it. I know you're thinking that's a cop out and it should just work ... but experience has shown that when things don't work for one user that do work for other

Re: linksubmit doesn't work on localized pages

2010-03-20 Thread Ilya Obshadko
Any ideas yet? On Fri, Mar 19, 2010 at 12:30 AM, Ilya Obshadko wrote: > No, the problem is that I don't see any request on the server side. > > No request is being sent at all. After clicking on linksubmit component it > calls waitForPage() which is handling form submit event. > Then, inside this

Re: linksubmit doesn't work on localized pages

2010-03-18 Thread Ilya Obshadko
No, the problem is that I don't see any request on the server side. No request is being sent at all. After clicking on linksubmit component it calls waitForPage() which is handling form submit event. Then, inside this function, it terminates right after checking whether Tapestry.pageLoaded is true

Re: linksubmit doesn't work on localized pages

2010-03-18 Thread Howard Lewis Ship
Do you see the request on the server side? I.e., use FireBug Net panel to see what request is being sent, what response is coming down. There shouldn't be any difference between normal and localized pages. Is it possible that some intermediate server is mangling the query path in some way? On T