Re: jQuery and Submit button - Tapestry 5 problem

2012-03-23 Thread Emmanuel DEMEY
I have just tested your Application with Tapestry5-jQuery 3.2.0, and SUPPRESS_PROTOTYPE=true. And your problem comes from wl_Forms.js !! At the same time, do not include jquery.js a,d jQuery.noConflict() by yourself. Tapestry5-jQuery will do it for you. Manu 2012/3/22 eleanorltd > No this is n

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread eleanorltd
No this is not problem with script.js. When i set jQuery.noConflict(); T button submit work - jQuery don't work: Here is project: http://tapestry.1045711.n5.nabble.com/file/n5587140/ISNENewSWork.zip ISNENewSWork.zip when i delete jQuery.noConflict(); T button submit DON'T work - jQuery work: he

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread Emmanuel DEMEY
I will prefer still using Tapestry5-jQuery, because without this project, your will have conflict problem !! So if I keep the dependency to Tapestry5-jQuery, Please add this annotation into to your Contact page : @ImportJQueryUI({"jquery.ui.accordion", "jquery.ui.tabs"}) This annotation will add

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread eleanorltd
Everything work fine on original template without tapestry. Maybe it is becouse i forgot to load jQuery UI Script. I uploaded project with loaded jQuery UI script and jQuery, and i delete Tapestry5-jQuery. With that config Submit button work but jQuery things didn't. http://tapestry.1045711.n5.nabb

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread Emmanuel DEMEY
YOu have a JavaScript error messages ! Uncaught TypeError: Object [object Object] has no method 'accordion' in script.js Please check if the JavaScript file of the Accordion jQuery UI widget is loaded. Manu 2012/3/22 eleanorltd > path to Contact page is localhost:8080/isneNew/Contact > > > --

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread eleanorltd
path to Contact page is localhost:8080/isneNew/Contact -- View this message in context: http://tapestry.1045711.n5.nabble.com/jQuery-and-Submit-button-Tapestry-5-problem-tp5583697p5586524.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread eleanorltd
In contact page you have Tapestry submit button, and on general template on left side where is the Other button when you click on it, it's must slide down like some menu which dont't work. -- View this message in context: http://tapestry.1045711.n5.nabble.com/jQuery-and-Submit-button-Tapestry-5-p

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread Emmanuel DEMEY
I have just tested the increment (via Ajax) ] link, and the update works. What I have to test ? 2012/3/22 eleanorltd > No i don't have any JS errors. I try everything, SUPRESS_PROTOTYPE > true/false, jQuery.noConflict() and now i am without a

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread eleanorltd
No i don't have any JS errors. I try everything, SUPRESS_PROTOTYPE true/false, jQuery.noConflict() and now i am without any idea what to try next. :) I upload new clean project which have that problem. If you have time please download them. Thank you! http://tapestry.1045711.n5.nabble.com/file/n558

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread Emmanuel DEMEY
If you set the SUPPRESS_PROTOTYPE to true, jQuery code should work! DO you have any JavaScript error ? 2012/3/22 eleanorltd > I use Tapestry 5.3.2 version and Tapestry5-jQuery 3.0.0 version. > > > Demey Emmanuel wrote > > > > Which version of Tapestry and Tapestry5-jQuery do you use ? > > > > 2

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread eleanorltd
I use Tapestry 5.3.2 version and Tapestry5-jQuery 3.0.0 version. Demey Emmanuel wrote > > Which version of Tapestry and Tapestry5-jQuery do you use ? > > 2012/3/22 eleanorltd > >> When i set SUPRESS_PROTOTYPE to "true" button works but jQuery didn't. >> I upload my layout and pag

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread Emmanuel DEMEY
Which version of Tapestry and Tapestry5-jQuery do you use ? 2012/3/22 eleanorltd > When i set SUPRESS_PROTOTYPE to "true" button works but jQuery didn't. > I upload my layout and page where is submit button implemented. > > http://tapestry.1045711.n5.nabble.com/file/n5585017/Template.tml > Templ

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread eleanorltd
When i set SUPRESS_PROTOTYPE to "true" button works but jQuery didn't. I upload my layout and page where is submit button implemented. http://tapestry.1045711.n5.nabble.com/file/n5585017/Template.tml Template.tml http://tapestry.1045711.n5.nabble.com/file/n5585017/Contact.tml Contact.tml -- Vie

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-22 Thread Emmanuel DEMEY
you should set this constant in the contributeApplicationDefaults method (instead of contributeFactoryDefaults). 2012/3/21 ksrijith > When using Tapestry5-jquery you would need to add the following to the > AppModule.contributeFactoryDefaults method to completely suppress > Prototype: > configu

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-21 Thread ksrijith
When using Tapestry5-jquery you would need to add the following to the AppModule.contributeFactoryDefaults method to completely suppress Prototype: configuration.override(JQuerySymbolConstants.SUPPRESS_PROTOTYPE,"true"); If you could provide the tml file where this issue it happening, mayb