Re: JQuery and EasyUI problems of migrating Tapestry 5.3.8 to 5.5.0+

2021-07-27 Thread fred fred
Hi Thiago, Thank you for you kind reply. I did tried different combinations. With JQuery 3+, there is no need to add JQuery lib to the context asset, just override conf.override("jquery-library","Jquery.3.3.1.js"). It's only in core stack. But for JQuery with lower ver

Re: JQuery and EasyUI problems of migrating Tapestry 5.3.8 to 5.5.0+

2021-07-27 Thread Thiago H. de Paula Figueiredo
Hello! I believe the problem here is that it seems your code is preventing Require.js from being loaded, thus causing the Uncaught TypeError: require is not a function error and completely breaking the whole Tapestry's own JavaScript. I'd try avoiding overriding/adding again the jQue

JQuery and EasyUI problems of migrating Tapestry 5.3.8 to 5.5.0+

2021-07-26 Thread fred fred
Hello! Almost 7 Several years ago I developed an application with Tapestry 5.3.8 + EasyUI 1.3.5 (with JQuery 1.8.3) + tomcat 8.0+JDK8+Spring+OpenJPA. Now for some reason I have to migrate the JDK8 to OpenJDK11. So I have to upgrade Tapestry to version 5.5.0 or higher. I did below things

How to force the loading order of javascript libraries and modules? (jquery, jquery-ui, bootstrap)

2021-04-14 Thread Wilson Velez
I'm upgrading an application from tapestry 5.3.8 to 5.6.2. We use tapestry-jquery and an old bootstrap. Currently there is a mixin to copy some text to the clipboard and at the end of the script we inform the user that the text has been copied with a tooltip. define([], function() {

Re: Update jquery/Boostrap to latest versions

2018-05-23 Thread D.R.
Hi, just for info: on the bootstrap homepage they suggest:| jquery-3.3.1.slim.min.js| but the slim version does not support "$" i.e. "$.ajax" using the non-slim min version, fixes this problem. Kind regards David On 26.04.2018 15:19, Ömer Genç wrote: Hey Cezary, t

Re: Own jQuery version

2018-05-10 Thread Erich Gormann
Hi Ben, yes this helps. Thank you. I askes because we had a PEN test finding related to an outdated jQuery version, and so I have to update to a more recent one :-) Regards, Ric Am 10.05.2018 11:36, schrieb Ben Weidig: Hi, you can override the jquery version by contributing an override

Re: Own jQuery version

2018-05-10 Thread Ben Weidig
Hi, you can override the jquery version by contributing an override for "jquery-library" in the JavaScriptStack. We're using our own jQueryUI without tapestry-jquery by contributing JavaScriptModuleConfigurations to the ModuleManager. I've created a https://gist.

Own jQuery version

2018-05-10 Thread Erich Gormann
Dear all, I'm using Tapestry 5.4.3 and the latest release version of tapestry5-jquery in our application. Can you give me a hint, how to force Tapestry to use another version of jQuery and/or jQuery UI than the one bundled in libraries? Thanks for your suggestions. I heard, that

Replacing JQuery and Adding JQuery UI in Tapestry 5.4

2018-04-29 Thread abangkis
Hi I've overriden jquery in my layout @Import( stylesheet = { "classpath:/META-INF/assets/vendor/font-awesome/css/font-awesome.css", "classpath:/META-INF/assets/vendor/jquery/css/jquery-ui.css", "classpath:/META-INF/assets/css/sb-

Re: Update jquery/Boostrap to latest versions

2018-04-26 Thread Ömer Genç
Hey Cezary, thank you, this works. Nice. I also tried to override the core configuration like you described. Unfortunately i only used "jquery" instead of "jquery-library" as key in the configuration. Now, my setup seems to be clean. Thanks, Ömer 2018-04-26 15:06 GMT+02

Re: Update jquery/Boostrap to latest versions

2018-04-26 Thread Cezary Biernacki
configuration). However if you just want to replace jQuery with your own implementation, you can contribute it to @Core JavaScriptStack, like this: @Contribute(JavaScriptStack.class) @Core public static void overrideJquery(OrderedConfiguration configuration) { configur

Re: Update jquery/Boostrap to latest versions

2018-04-26 Thread Ömer Genç
Hi Erich, thanks for your reponse. I already saw that project and it seems very promising. However the documentation states that tapestry5-jquery is based on tapestry 5.3 and i need to use tapestry 5.4.3. In the meantime is was able to integrate bootstrap4 and jquery-3.X into my tapestry

Re: Update jquery/Boostrap to latest versions

2018-04-25 Thread Erich Gormann
Hi Ömer, I'm working at the Atos Worldline Company and we developed a component library named "tapestry5-jquery". It provides some features which possibly will help you. Take a look: http://tapestry5-jquery.com/ Greetings, Ric Am 25.04.2018 12:42, schrieb Ömer Genç: H

Update jquery/Boostrap to latest versions

2018-04-25 Thread Ömer Genç
Hey there, i am quite new to development with Apache Tapestry. In Tapestry 5.4.3 support for jquery and bootstrap was added to the core stack. Is it possible to update those dependencies to the latest versions. I would like to use Bootstrap 4. Bootstrap 4 needs jquery-3.X. The version of

Re: jquery-ui.css and CSSURLRewriter

2016-12-20 Thread Bob Harner
://github.com/eddyson-de/tapestry-webjars) and > jquery-ui. Everything work fine, except when i try to use the jquery-ui.css. > > It took me some time to understand the following error message, while trying > to load the css file: > > Caused by: java.lang.RuntimeException: U

jquery-ui.css and CSSURLRewriter

2016-12-20 Thread Robert Hannebauer
Hello, i'm playing with webjars (https://github.com/eddyson-de/tapestry-webjars) and jquery-ui. Everything work fine, except when i try to use the jquery-ui.css. It took me some time to understand the following error message, while trying to load the css file: Caus

Re: [tapestry5-jquery] CustomDatepicker mixin not working

2016-05-19 Thread Nathan Quirynen
Sorry, mail was sent empty by mistake. Just wanted to say I made the issue with some of my thoughts/testing info. https://github.com/got5/tapestry5-jquery/issues/373 Have also tried with Tapestry 5.4.1 with no success. On 18/05/16 09:19, Nathan Quirynen wrote: On 17/05/16 21:43, françois

Re: [tapestry5-jquery] CustomDatepicker mixin not working

2016-05-18 Thread Nathan Quirynen
On 17/05/16 21:43, françois facon wrote: Hi Nathan, Could you open an issue at https://github.com/got5/tapestry5-jquery/issues ? François 2016-05-17 10:34 GMT+02:00 Nathan Quirynen mailto:nat...@pensionarchitects.be>>: Hi, I'm upgrading to tapestry:5.4.0 and tape

Re: [tapestry5-jquery] CustomDatepicker mixin not working

2016-05-17 Thread françois facon
Hi Nathan, Could you open an issue at https://github.com/got5/tapestry5-jquery/issues ? François 2016-05-17 10:34 GMT+02:00 Nathan Quirynen : > Hi, > > I'm upgrading to tapestry:5.4.0 and tapestry-jquery:4.0.0. > > I have the following .tml: > > >

[tapestry5-jquery] CustomDatepicker mixin not working

2016-05-17 Thread Nathan Quirynen
Hi, I'm upgrading to tapestry:5.4.0 and tapestry-jquery:4.0.0. I have the following .tml: and in my java code: @Property private LocalDate someDate; public JSONObject getParams() { JSONObject params = new JSONObject(); params.put("

Re: tapestry jquery PageScroll

2016-03-20 Thread Robert Jakeš
Thank you for reply. I was not aware of tests for tapestry5-jquery > I guess that you get your code form the sample at > > https://github.com/got5/tapestry5-jquery/blob/master/src/test/resources/org/got5/tapestry5/jquery/pages/PageScroll.tml I manage to get it working, but now it&#x

Re: tapestry jquery PageScroll

2016-03-20 Thread françois facon
There is some documentation from the author of this component available at https://tawus.wordpress.com/2012/11/25/scrolling-pages-tapestry5-onscrollbeyond/ if you have a look at the source doc, https://github.com/got5/tapestry5-jquery/blob/master/src/main/java/org/got5/tapestry5/jquery/components

tapestry jquery PageScroll

2016-03-15 Thread Robert Jakeš
I am trying to use tapestry5 jquery component PageScroll for infinite scrolling. - tapestry5 - 5.3.8 - tapestry5-jquery - 3.4.2 So far i got this: public class PageScrollDemo { private static final int PageSize = 100; @Property private int value; @OnEvent("nex

tapestry jquery PageScroll

2016-03-15 Thread Robert Jakeš
I am trying to use tapestry5 jquery component PageScroll for infinite scrolling. - tapestry5 - 5.3.8 - tapestry5-jquery - 3.4.2 So far i got this: public class PageScrollDemo { private static final int PageSize = 100; @Property private int value; @OnEvent("nex

Re: How to trigger a zone update from a jquery Context Menu event ?

2015-09-20 Thread françois facon
Hello Robin, This mixin only send a simple Ajax call. It would make sense to ask for a new parameter that specify a Zone to update. at https://github.com/got5/tapestry5-jquery/issues. François 2015-09-20 3:30 GMT+02:00 Robin Garner : > I'm trying to use a context menu (using t

How to trigger a zone update from a jquery Context Menu event ?

2015-09-19 Thread Robin Garner
I'm trying to use a context menu (using tapestry5-jquery's jquery/ContextMenu mixin) to perform an action, and then I want to update the page to reflect the new state. The first part works just fine, but I can't figure out how to get the page updated afterwards. While a zone

Re: Jquery InPlaceEditor Component

2015-06-02 Thread françois facon
Hi Daniel, Please, open an issue at https://github.com/got5/tapestry5-jquery-demo/issues. Regards, François 2015-06-02 15:15 GMT+02:00 Poggenpohl, Daniel < daniel.poggenp...@isst.fraunhofer.de>: > Hi, > > The inplace editor example on the page > http://tapestry5-jqu

Jquery InPlaceEditor Component

2015-06-02 Thread Poggenpohl, Daniel
Hi, The inplace editor example on the page http://tapestry5-jquery.com/components/docsinplaceeditor seems to be broken. I can't seem to change pages with the pager but get errors (Communication with the server failed: null). Is there an error in the example that no one detected? Regards, Daniel

Page opens Component A in Dialog X using DialogAjaxLink + Component A opens Component B in Dialog Y using DialogAjaxLink (Jquery Tapestry Dialog)

2015-06-01 Thread Poggenpohl, Daniel
Hi, I have the setup in the subject header. When I open Dialog X to display Component A, the contents of Dialog Y (i.e. Component B) are rendered inside Dialog X. Can I prevent this? When clicking the DialogAjaxLink in Dialog X to open Dialog Y, Dialog Y opens in a normal way and displays Comp

Re: jQuery/autocomplete

2015-04-27 Thread Geoff Callender
Good points, Lance. Yes I will consider adding those features to JumpStart, and at the very least I will add a link to Observe. Thanks. On 27 Apr 2015, at 7:37 pm, Lance Java wrote: > Hi Geoff, as stated on the demo, the observe mixin was inspired by zone > updater but with a few very handy dif

Re: jQuery/autocomplete

2015-04-27 Thread Lance Java
Hi Geoff, as stated on the demo, the observe mixin was inspired by zone updater but with a few very handy differences: 1. Developers don't need to deal with request parameters. These are converted to more user friendly event arguments. 2. You can pass multiple clientside field values. In the jump

Re: jQuery/autocomplete

2015-04-27 Thread Geoff Callender
> attribute and handle the 'onChanged' event to update the zone. > > There's also the observe mixin from tapestry-stitch ( > http://t5stitch-lazan.rhcloud.com/observedemo). Note: This will require a > javascript tweak to work with jquery (currently prototype specific).

Re: jQuery/autocomplete

2015-04-27 Thread Lance Java
Is your autocomplete a select component? If so you can set the 'zone' attribute and handle the 'onChanged' event to update the zone. There's also the observe mixin from tapestry-stitch ( http://t5stitch-lazan.rhcloud.com/observedemo). Note: This will require a javascript

jQuery/autocomplete

2015-04-26 Thread David Tio
Hi All, I need help with tapestry jQuery/autocomplete. I want to fill up another field based on the selection on jQuery/autocomplete textfield. What's the best way to perform such action? The only event available seems to be provideCompletions Regards, David Tio

Re: Problems with jquery tab component

2015-03-25 Thread George Christman
mailto:daniel.poggenp...@isst.fraunhofer.de] > Gesendet: Mittwoch, 25. März 2015 11:18 > An: Tapestry users > Betreff: AW: Problems with jquery tab component > > Hello for the third time, > > I'm beginning to warm up with Firebug... > > When I click on the DialogAjaxLink

AW: Problems with jquery tab component

2015-03-25 Thread Poggenpohl, Daniel
- Von: Poggenpohl, Daniel [mailto:daniel.poggenp...@isst.fraunhofer.de] Gesendet: Mittwoch, 25. März 2015 11:18 An: Tapestry users Betreff: AW: Problems with jquery tab component Hello for the third time, I'm beginning to warm up with Firebug... When I click on the DialogAjaxLink to open the dia

AW: Problems with jquery tab component

2015-03-25 Thread Poggenpohl, Daniel
27;" Any ideas? Daniel P. -Ursprüngliche Nachricht- Von: Poggenpohl, Daniel [mailto:daniel.poggenp...@isst.fraunhofer.de] Gesendet: Mittwoch, 25. März 2015 11:02 An: Tapestry users Betreff: AW: Problems with jquery tab component Hello again, I've activated event logging in the page and c

AW: Problems with jquery tab component

2015-03-25 Thread Poggenpohl, Daniel
t: Dienstag, 24. März 2015 12:54 An: users@tapestry.apache.org Betreff: Problems with jquery tab component Hi, I'm using the jquery tab component, and as the google group seems pretty dead at the moment, I thought I bring my question here... I have a page with a tab component (ajax=true)

Problems with jquery tab component

2015-03-24 Thread Poggenpohl, Daniel
Hi, I'm using the jquery tab component, and as the google group seems pretty dead at the moment, I thought I bring my question here... I have a page with a tab component (ajax=true) with 4 tabs. One of these tabs contains dialogAjaxLinks that open some dialogs. The links are contained i

AW: Session Storage - activePanelId of Jquery Tabs Component

2015-03-23 Thread Poggenpohl, Daniel
aniel [mailto:daniel.poggenp...@isst.fraunhofer.de] Gesendet: Montag, 23. März 2015 09:31 An: users@tapestry.apache.org Betreff: Session Storage - activePanelId of Jquery Tabs Component Hello, I'm trying to store the activePanelId of a Jquery tabs component as a SessionAttribute, so that when the page

Session Storage - activePanelId of Jquery Tabs Component

2015-03-23 Thread Poggenpohl, Daniel
Hello, I'm trying to store the activePanelId of a Jquery tabs component as a SessionAttribute, so that when the page is loaded, the correct panel is highlighted and the correct tab content is displayed, i.e. the one that was highlighted/displayed when you left the page. Now, when I leav

Strange AJAX behaviour in my pages (using jquery tabs)

2015-02-16 Thread Poggenpohl, Daniel
Hello, I have some strange behaviour going on in my Tapestry app. On a page using jquery tabs, some UI elements from different parts of the page pop up for a millisecond when I change the active tab. They pop up outside of the tabs. What could be the problem? Should I post my tab configuration

Re: Tapestry5 jquery ajaxupload in Form

2014-12-15 Thread George Christman
You need to provide additional information such as code example etc. Your question is a little to vague. On Mon, Dec 15, 2014 at 4:59 AM, Bosch, Christian wrote: > > Hello, > > I written a tapestry component embedding Tapestry JQuery AjaxUpload > (Tapestry 5.3.7 and Tapestry Jque

Tapestry5 jquery ajaxupload in Form

2014-12-15 Thread Bosch, Christian
Hello, I written a tapestry component embedding Tapestry JQuery AjaxUpload (Tapestry 5.3.7 and Tapestry Jquery 3.3.4). My component is part of t:form. Once a file is uploaded, submit buttons of form are no longer working. Any idea ? Thanks, C. BOSCH.

Re: Tapestry5 jquery ajaxupload

2014-12-04 Thread George Christman
For something simple like messages, you might be able to just pass in your own json object through params. https://github.com/got5/tapestry5-jquery/blob/master/src/main/java/org/got5/tapestry5/jquery/components/AjaxUpload.java It looks like line 164 they are doing a merge. On Thu, Dec 4, 2014

Re: Tapestry5 jquery ajaxupload

2014-12-04 Thread George Christman
I ended up having to several modify that component to get it to do what I wanted it to do. It's very difficult to modify the template because the core file upload js depends on a lot of the elements within the template. Anyhow, I ended up using Tapestry5-jquery as a base to build my own ve

Re: How to access tapestry validation results inside jquery

2014-12-04 Thread Barry Books
In 5.4 there is an event for this. define(["jquery","t5/core/events"], *function*($,events) { *return* *function*(parameters) { $('#'+parameters.id + ' :submit').removeAttr('disabled'); $('#'

How to access tapestry validation results inside jquery

2014-12-03 Thread Sumanth
Hello Gurus, I have a ajax form component with a submit button. My requirement is to change the label of the button to "submitting.." and disable the button on the form submit. This form component has a select input field. The script to disable the button. define([ "jque

Tapestry5 jquery ajaxupload

2014-12-03 Thread Bosch, Christian
Hello, I'm writing a tapestry component using Tapestry5-Jquery AjaxUpload. I would like to customize UI (template & file template) and change captions/messages. But I can't find any sample to handle this. Do you a sample or a link to a sample AjaxUpload integration ? Thanks for

Jquery gmap3 - isEmpty is not defined

2014-12-03 Thread Jan Fryblik
Hi guys, I've just migrated to T5.4 and Tapestry-Jquery 4.0.1-SNAPSHOT. And it seems I have an issue with 'isEmpty' function in GMap.js file. Error in firebug console looks like: ReferenceError: isEmpty is not defined if (isEmpty(specs.params)) { Source code snippet fr

Re: JQuery upload issue

2014-11-27 Thread Christian Riedel
…and the exception on the server, i.e. the Internal Server Error? > Am 27.11.2014 um 14:56 schrieb Name Surname : > > NetworkError: 500 Internal Server Error I keep getting this error from > console once I press Submit. > >> Subject: Re: JQuery upload issue >> Fr

RE: JQuery upload issue

2014-11-27 Thread Name Surname
Forgot to say that I'm running it from localhost. > From: wintertime0...@outlook.com > To: users@tapestry.apache.org > Subject: RE: JQuery upload issue > Date: Thu, 27 Nov 2014 14:56:03 +0100 > > NetworkError: 500 Internal Server Error I keep getting this error from

RE: JQuery upload issue

2014-11-27 Thread Name Surname
NetworkError: 500 Internal Server Error I keep getting this error from console once I press Submit. > Subject: Re: JQuery upload issue > From: cr.ml...@googlemail.com > Date: Thu, 27 Nov 2014 12:16:48 +0100 > To: users@tapestry.apache.org > > The cause might be everything from

Re: JQuery upload issue

2014-11-27 Thread Christian Riedel
The cause might be everything from bugs in your code, browser specific bugs to server configuration. You must give us some more details about your setup, code and what you’ve tried so far as well as possible exceptions on server- and client-side. > Am 27.11.2014 um 08:44 schrieb Name Surname : >

JQuery upload issue

2014-11-26 Thread Name Surname
I have deployed server on my local machine and would like to use TapJQuery upload feature. However each time I try to upload something I get failed as final output. What may be the cause of it? NOTE: I am accessing my locally deployed server from a local web browser. Thinking this might be a rea

Re: tapestry and jquery

2014-11-25 Thread Ivano Luberti
e)?wanted > Maybe someone can shed some light on it now. > > I ask questions and get no answer sometimes - could be the way I ask, not > tapestry itself or waste of time. > > I've used both 5.3 tapestry-jquery really well, and tapestry-5.4-beta22. > > Have you already g

Re: tapestry and jquery

2014-11-25 Thread françois facon
Hello Ivano, The best way to get an anwser is to post your question at https://github.com/got5/tapestry5-jquery/issues. version < 4.0.0 of tapestry5-jquery provides jQuery integration for Tapestry 5 and allow you to work with or to replace the tapestry.js file based on protot

Re: tapestry and jquery

2014-11-24 Thread Chris Mylonas
Have you got a link to previous post (on nabble)? Maybe someone can shed some light on it now. I ask questions and get no answer sometimes - could be the way I ask, not tapestry itself or waste of time. I've used both 5.3 tapestry-jquery really well, and tapestry-5.4-beta22. Have you al

Re: tapestry and jquery

2014-11-24 Thread Chung Khanh Duy
Hi, I am using tapestry5jquery lib and it looks great. So I suggest you should use it rather than integrating your own jquery script. Thanks, Duy On Tue, Nov 25, 2014 at 6:11 AM, Ivano Luberti wrote: > Hi guys, in the past days I have posted a question about an issue with > tapestry5

Re: tapestry and jquery

2014-11-24 Thread Paul Stanton
You can start with a fresh Tapestry 5.4 (beta) project which has JQuery built in. You will probably want to exclude the PrototypeJs/Scriptaculous support and only use jquery: @Contribute(SymbolProvider.class) @ApplicationDefaults public static void setupEnvironment(MappedConfiguration

Re: tapestry and jquery

2014-11-24 Thread Charlouze
Hey, I'm not using tapestry5-jquery but i've tried it with tapestry5 versions prior to t5.4. I'll try to give you some hints to help you decide what you need. If you are going to use t5.4, you could just see t5jq as a components library that require jquery as the JS infrastructure

tapestry and jquery

2014-11-24 Thread Ivano Luberti
Hi guys, in the past days I have posted a question about an issue with tapestry5 jquery. I have got no answer both on this list and (more worrying) on tapestry5jquery moderated google group (freezed at september 29 btw) So my question is: having to start today a small web application in tapestry5

tapestry5-jquery throws exception

2014-11-21 Thread Ivano Luberti
Hi, I'd like to add tapestry5-jquery but I get an exception. I'm not sure if it is a tapestry issue or a tapestry5-jquery one . I have already potest on the latter google gorup but got no answer, so I try here. I'm using tapesrty 5.3.7 and tapestry5-jquery 3.3.8 Here is the exepti

Re: tapestry 5.4 and jquery datepicker

2014-11-17 Thread Jan Fryblik
3.7 to 5.4-beta22 and I'm facing another tough error. There is >>tapestry-jquery 4.0.1-SNAPSHOT included in project and there is no usage of datepicker in page where is exception thrown from. Thank you for any comments >>or ideas. That's not needed for you to have a date

Re: tapestry 5.4 and jquery datepicker

2014-11-17 Thread Thiago H de Paula Figueiredo
On Mon, 17 Nov 2014 15:56:23 -0200, Jan Fryblik wrote: Hi guys, Hi! I'm migration my project from tapestry 5.3.7 to 5.4-beta22 and I'm facing another tough error. There is tapestry-jquery >4.0.1-SNAPSHOT included in project and there is no usage of datepicker in

tapestry 5.4 and jquery datepicker

2014-11-17 Thread Jan Fryblik
Hi guys, I'm migration my project from tapestry 5.3.7 to 5.4-beta22 and I'm facing another tough error. There is tapestry-jquery 4.0.1-SNAPSHOT included in project and there is no usage of datepicker in page where is exception thrown from. Thank you for any comments or ideas.

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-10-22 Thread Arve Klev
js-file from >> "src/main/resources/META-INF/modules" >> >> { >> . . . >> } >> >> In my page ListSomething.tml: >> > xmlns:t="http://tapestry.apache.org/schema/tapestry_5_4.xsd"; >> xmlns:p="tapestry:parameter&qu

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-10-19 Thread Chris Mylonas
Thanks I'll give this a shot with some accordion js stuff that isn't working.

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-10-19 Thread Thiago H de Paula Figueiredo
-file from "src/main/resources/META-INF/modules" { . . . } In my page ListSomething.tml: http://tapestry.apache.org/schema/tapestry_5_4.xsd"; xmlns:p="tapestry:parameter"> . . . title="Popover title" data-content="And here's some amazing content.">

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-10-18 Thread Arve Klev
http://tapestry.apache.org/schema/tapestry_5_4.xsd"; xmlns:p="tapestry:parameter"> . . . Click . . . In my "src/main/resources/META-INF/modules/my-js-popover.js": define(["jquery", "bootstrap/popover"], function($, popover) { var $pop = $("#myPop&quo

Re: [tapestry5-jquery] jquery.palette bug in production mode

2014-09-08 Thread TNO
Hi, I found the problem ! When I start using tapestry5-jquery, I replace all my |@Import(library = {"classpath:org/.../jquery.js"}) | with |@Import(library = {"${jquery.core.path}"}) | No problem in dev mode, but in production mode, problem with palette (and may be othe

Re: [tapestry5-jquery] jquery.palette bug in production mode

2014-09-01 Thread françois facon
Hi I tried to reproduce the problem without success on the 3.4.1-snapshot. Have you tested this version? please post you comments to https://github.com/got5/tapestry5-jquery/issues/335 François 2014-08-30 21:25 GMT+02:00 TNO : > Hi, > > I'm using > > * tapestry 5.3.7 &

[tapestry5-jquery] jquery.palette bug in production mode

2014-08-30 Thread TNO
Hi, I'm using * tapestry 5.3.7 * tapestry5-jquery 3.3.7 * a simple form (login, password and list of role), a jquery.palette is used to choose the roles. It works when PRODUCTION_MODE is set to false, but my role list is always null when PRODUCTION_MODE = true. Using Firebug,

Re: tapestry5-jquery tabs

2014-08-11 Thread Basile Chandesris
; } } https://issues.apache.org/jira/browse/TAP5-2373 Le 08/08/14 23:45, Chris Mylonas a écrit : Hi John, Not really a tapestry question but it's something I need to do for a "project-of-the-future" Maybe checking jquery-ui will help e.g. http://stackoverflow.com/questions/1

jquery events with ajax form submission of kaptcha code

2014-08-11 Thread John
I thought this problem was limited to dialogajaxlink but I see teh same thing now with ajax forms and jquery. The first time the form is used the submit event works, when it is rerendered it doesn't work the next time. In the example below the first time the forgot password process is st

5.4 + jquery/bootstrap configuration

2014-08-09 Thread Chris Mylonas
T, "context:assets/bootstrap"); configuration.add(SymbolConstants.JAVASCRIPT_INFRASTRUCTURE_PROVIDER, "jquery"); to my configuration. All runs well. I can change bootstrap version, say from 3.1.1 to 3.2.0 by replacing the contents of the directory specifed. Say I wanted to chang

Re: tapestry5-jquery tabs

2014-08-08 Thread Chris Mylonas
Hi John, Not really a tapestry question but it's something I need to do for a "project-of-the-future" Maybe checking jquery-ui will help e.g. http://stackoverflow.com/questions/14702631/in-jquery-ui-1-9-how-do-you-create-new-tabs-dynamically Chris On Tue, Aug 5, 2014 at 3:56

tapestry5-jquery tabs

2014-08-04 Thread John
Has anyone got code to share for a jquery tabs example where the tabs are created dynamiclly? The given example only allows for a fixed number of tabs. John --- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com

Re: [T5.4] jQuery-File-Upload integration

2014-06-11 Thread Ilya Obshadko
in a single directory. Everything works fine now. On Wed, Jun 11, 2014 at 12:00 AM, Chris Poulsen wrote: > I did an implementation of the jquery fileupload at work. AFAIR its modules > are AMD compliant so it is pretty straight forward to integrate. Just > require them as you normally woul

Re: [T5.4] jQuery-File-Upload integration

2014-06-10 Thread Chris Poulsen
I did an implementation of the jquery fileupload at work. AFAIR its modules are AMD compliant so it is pretty straight forward to integrate. Just require them as you normally would with modules. -- Chris On Tue, Jun 10, 2014 at 6:48 PM, Ilya Obshadko wrote: > Did anybody successfu

[T5.4] jQuery-File-Upload integration

2014-06-10 Thread Ilya Obshadko
Did anybody successfully implement https://github.com/blueimp/jQuery-File-Upload on T5.4? I can't make dependencies work. - addModuleConfigurationCallback can't be used for component inside a Zone - I have tried to contribute to ModuleManager, but it's getting too complex and does

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-27 Thread Basile Chandesris
://git-wip-us.apache.org/repos/asf?p=tapestry-5.git;a=commit;h=234ec514afc376252c5c526e4b2bd3cab6c83a5e jQuery 1.11.1 / 1.9.1 RequireJS 2.1.11 https://git-wip-us.apache.org/repos/asf?p=tapestry-5.git;a=commit;h=5b12cea9f97e12b1433cf960b83e7bcc45bee63d Moment.js 2.6.0 https://git-wip-us.apache.org

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-27 Thread Chris Poulsen
lts in "cannot > load module" errors > > etc etc > > But that's at least a place to start. > > > > On Tue, May 27, 2014 at 5:54 PM, Ilya Obshadko >wrote: > > > From the previous posts it seems that I have already completed all the > > nec

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-27 Thread Ilya Obshadko
c etc But that's at least a place to start. On Tue, May 27, 2014 at 5:54 PM, Ilya Obshadko wrote: > From the previous posts it seems that I have already completed all the > necessary steps to get jQuery infrastructure working. But it doesn't. > > I just don't have an

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-27 Thread Ilya Obshadko
>From the previous posts it seems that I have already completed all the necessary steps to get jQuery infrastructure working. But it doesn't. I just don't have an idea (yet) what to try next. On Tue, May 27, 2014 at 1:28 PM, Chris Poulsen wrote: > Start by getting the jquer

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-27 Thread Chris Poulsen
Start by getting the jquery infrastructure working. Verify that your module is being loaded etc. On Tue, May 27, 2014 at 11:08 AM, Ilya Obshadko wrote: > Here's my version of contributeApplicationDefaults(): > > public static void contributeApplicationDefaults ( > Ma

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-27 Thread Ilya Obshadko
Here's my version of contributeApplicationDefaults(): public static void contributeApplicationDefaults ( MappedConfiguration configuration ) { configuration.add ( SymbolConstants. JAVASCRIPT_INFRASTRUCTURE_PROVIDER, "jquery" ); co

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-27 Thread Chris Poulsen
Hi, The dom module is the one distinguishing between jquery and prototype. The code you posted belongs in the prototype version, the jquery one is different... So it seems that you are not using the jquery infrastructure. We use the following setting to enable it: @Contribute

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Ilya Obshadko
? null : value); } return current; }; readAttribute is not defined (and I believe it shouldn't, because it's a part of Prototype API and I'm using jQuery as infrastructure provider). Any ideas? On Tue, May 27, 2014 at 10:07 AM, Ilya Obshadko wrote: > I trie

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Ilya Obshadko
rap module in your page, try this sort of thing: >> >> void afterRender() { >> javaScriptSupport.require("bootstrap/dropdown"); >> } >> >> and to use a bootstrap module in your javaScript, try this sort of thing: >>

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Ilya Obshadko
ally as part of T5's > core. To use a bootstrap module in your page, try this sort of thing: > > void afterRender() { > javaScriptSupport.require("bootstrap/dropdown"); > } > > and to use a bootstrap module in your javaScript,

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Jon Williams
rap/dropdown"); > } > > and to use a bootstrap module in your javaScript, try this sort of thing: > > define(["jquery", "bootstrap/button"], function($, button) { > // etc > } > > BTW, I use jQuery as the infrastructure provider. &g

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Geoff Callender
uire("bootstrap/dropdown"); } and to use a bootstrap module in your javaScript, try this sort of thing: define(["jquery", "bootstrap/button"], function($, button) { // etc } BTW, I use jQuery as the infrastructure provider. publ

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Jon Williams
1 other thing, you will have to Import the bootstrap.js into your ui class to get it all working. @Import(library = {"context:bootstrap/js/bootstrap.js"}) public class Index { On Mon, May 26, 2014 at 4:59 PM, Jon Williams wrote: > it's easy to custom setup Tapestry 5.4 to the latest bootstrap v

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Jon Williams
it's easy to custom setup Tapestry 5.4 to the latest bootstrap version, with all the widgets. make the contribution to the environment like so: configuration.add(SymbolConstants.BOOTSTRAP_ROOT, "context:bootstrap"); then, make a bootstrap distro directory in your webapp context. then put a a ful

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Thiago H de Paula Figueiredo
On Mon, 26 May 2014 16:46:27 -0300, Ilya Obshadko wrote: I did. Still got the same error. Tapestry doesn't include the full Bootstrap set of .js files, so you'll need to import yourself. The Tapestry out-of-the-box Bootstrap offerings right now are focused on the CSS side, not on the wi

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Ilya Obshadko
I did. Still got the same error. On Mon, May 26, 2014 at 10:25 PM, Lance Java wrote: > Have you swapped the infrastructure provider from prototype to jquery? > > Details here: > https://github.com/bobharner/blog/wiki/Jumping-Into-Tapestry-5.4-Alpha-3 > On 26 May 2014 18:00,

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Lance Java
Have you swapped the infrastructure provider from prototype to jquery? Details here: https://github.com/bobharner/blog/wiki/Jumping-Into-Tapestry-5.4-Alpha-3 On 26 May 2014 18:00, "Ilya Obshadko" wrote: > Turns out I've got "Uncaught TypeError: undefined is not a func

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Ilya Obshadko
gt; heavily relies on Bootstrap and jQuery. Previously I was using Bootstrap > version 2.3.2, so that's a good time to upgrade Bootstrap as well. > > Could someone clarify this for me: Tapestry 5.4 distribution already > contains everything needed to work out of the box? Or do

[T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Ilya Obshadko
I've just started migrating from 5.3 to 5.4-beta3. My application already heavily relies on Bootstrap and jQuery. Previously I was using Bootstrap version 2.3.2, so that's a good time to upgrade Bootstrap as well. Could someone clarify this for me: Tapestry 5.4 distribution alread

  1   2   3   4   5   6   7   8   9   10   >