RE: Got5-JQuery: Any way to disable serving of minified .js files?

2012-07-23 Thread Demey Emmanuel
There is no way to avoid minification in Tapestry5-JQuery. The only constant we use is PRODUCTION_MODE. -Message d'origine- De : Lenny Primak [mailto:lpri...@hope.nyc.ny.us] Envoyé : lundi 23 juillet 2012 06:52 À : Tapestry users Objet : Re: Got5-JQuery: Any way to disable serving of

RE: T5.2.6 jquery2.6.0 jquery dialog close from included component

2012-03-14 Thread Demey Emmanuel
How do you want to close it ? with a link ? $('selector). .dialog( close ) in JavaScript http://jqueryui.com/demos/dialog/ Manu -Message d'origine- De : resign [mailto:sergejb...@yahoo.de] Envoyé : mercredi 14 mars 2012 14:19 À : users@tapestry.apache.org Objet : T5.2.6 jquery2.6.0

RE: Testing Palette component with HTMLUnit

2012-03-07 Thread Demey Emmanuel
I had the same problem with the Selenium test of the Tapestry-jQuery version of the Palette component . Please check my test class : https://github.com/got5/tapestry5-jquery/blob/master/src/test/java/org/got5/tapestry5/jquery/PaletteTest.java Manu -Message d'origine- De : Stephan

RE: Header text for recordError()

2012-03-02 Thread Demey Emmanuel
Hi Please check the documentation of the Errors component : http://tapestry.apache.org/current/apidocs/org/apache/tapestry5/corelib/components/Errors.html There is a banner parameter. Manu -Message d'origine- De : Markus Grell [mailto:tapes...@military.de] Envoyé : vendredi 2 mars

RE: How to use the jQuery Ajax examples from http://jqueryui.com/demos/

2012-02-14 Thread Demey Emmanuel
Hi Alexander It is not mandatory to add the JQueryModule into the @SubModule annotation. It will be loaded automatically. Your template About suppressing Prototype, where do you change the value of this constant? Manu -- View this message in context:

RE: How to use the jQuery Ajax examples from http://jqueryui.com/demos/

2012-02-14 Thread Demey Emmanuel
Hi You are totally right, Tapestry includes Prototype and Script.aculo.us JavaScript libraries by default. You can use JavaScript : - Directly in the template, inside a script tag, but it is not recommended. - in an exernal file, and import this file in your template (script

RE: How to use the jQuery Ajax examples from http://jqueryui.com/demos/

2012-02-14 Thread Demey Emmanuel
It comes from Tapestry5-jQuery. By default, TjQ import jquery, and some jquery.ui files. But if you need more, you have to use this annotation. You are right, it is not documented in the web site, I add it into my to-do list. Manu -Message d'origine- De : sommeralex

RE: How to use the jQuery Ajax examples from http://jqueryui.com/demos/

2012-02-14 Thread Demey Emmanuel
Or you can also contribute to our Library ? ;) -Message d'origine- De : sommeralex [mailto:alexander.som...@gmail.com] Envoyé : mardi 14 février 2012 15:18 À : users@tapestry.apache.org Objet : Re: How to use the jQuery Ajax examples from http://jqueryui.com/demos/ THANK YOU!! But the

RE: How to use the jQuery Ajax examples from http://jqueryui.com/demos/

2012-02-14 Thread Demey Emmanuel
You can add a handler to the update event of the Sortable widget : http://jqueryui.com/demos/sortable/#default. And in this handler, send an Tapestry Event-type request, that you will be able to catch in your Java Class. $( #sortable ).sortable({ update: function { ajaxRequest = {

RE: implementing a sortable list with jQuery

2012-02-13 Thread Demey Emmanuel
Hi Alexander question 1: Tapestry5-jQuery insert a default CSS stylesheet. If you want to override it, you need to use the JQuerySymbolConstants.JQUERY_UI_DEFAULT_THEME constant question 2: Where this code come from ? JavaScript ? Template ? do you have a getPageName method in your Java