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 version, it must be added to Jav

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 jQuery library, wh

Re: jquery-ui.css and CSSURLRewriter

2016-12-20 Thread Bob Harner
As you probably figured out, Tapestry's parsing of CSS files is just using a regular expression rather than a true parser, and coming up with a regex that skipped urls within comments was judged too hard at the time (https://issues.apache.org/jira/browse/TAP5-2368). However, it looks like you're ri

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-jquery.com/components/docsinpla

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
I realise this question doesn't relate to T5.4 but, for anyone who's searching the mailing list, here's a way to handle the same thing in T5.4. void onChangeOfPersonName(@RequestParameter(value = "input", allowBlank = true) String personName) { // find the person and return an Ajax res

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 tweak to work with jquery

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 : >

Re: Jquery Datatable Questions

2013-12-04 Thread Emmanuel DEMEY
Hi, >> How do I set css styles on column cells? Directly into your CSS file : table td {background-colr: #fff;} >> Secondly, I want to be able to mouse over a cell or header and have a small hover box appear with some data. How is that possible? You can maybe this sample : http://datatables.net/e

Re: JQuery IE Problem

2013-11-28 Thread Emmanuel DEMEY
If you add a breakpoint on line 9, does your jQuery('#' + spec.dialogId) return the right thing ? Manu 2013/11/28 Vasili Petrenko > If I execute this code in console : $j('#dlgAskPdf').dialog('open'); the > modal box is showing. > > '$j' is my alias for JQuery. > > -Ursprüngliche Nachricht

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-10 Thread Ilya Obshadko
I have managed to resolve it. Wrapping event setup inside Tapestry.onDOMLoaded() fixed the issue. Mixin code is here: https://gist.github.com/xfyre/7369149 On Mon, Nov 11, 2013 at 3:15 AM, François Facon wrote: > without code and without more information on the versions used, it is > difficult

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-10 Thread François Facon
without code and without more information on the versions used, it is difficult to dig. 2013/11/10 Ilya Obshadko > Thanks, that makes sense. Any ideas on hashchange event handling > compatibility? > > > On Sun, Nov 10, 2013 at 3:29 AM, François Facon >wrote: > > > Oups! My bad. > > if you set

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread Ilya Obshadko
Thanks, that makes sense. Any ideas on hashchange event handling compatibility? On Sun, Nov 10, 2013 at 3:29 AM, François Facon wrote: > Oups! My bad. > if you set JQuerySymbolConstants. > SUPPRESS_PROTOTYPE at *false*, the tapestry core components will use a > prototype implementations. > see h

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread François Facon
Oups! My bad. if you set JQuerySymbolConstants. SUPPRESS_PROTOTYPE at *false*, the tapestry core components will use a prototype implementations. see https://github.com/got5/tapestry5-jquery/wiki/FAQ and the first commit about SUPPRESS_PROTOTYPE https://github.com/got5/tapestry5-jquery/commit/0fcf7

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread Ilya Obshadko
Well, looks like listening to the history events conflicts with jquery/autocomplete mixin somehow. jquery-hashchange plugin has same issue: when hashchange event is handled, autocomplete no longer works. On Sun, Nov 10, 2013 at 12:31 AM, Ilya Obshadko wrote: > I don't completely understand, do

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread Ilya Obshadko
I don't completely understand, do you really mean setting SUPPRESS_PROTOTYPE to *false* allows tapestry to use Prototype implementations? I'm expecting that SUPPRESS_PROTOTYPE, literally, suppresses usage of Prototype and allows to switch to jQuery completely. Is this right? Seems like I have foun

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread François Facon
if you set JQuerySymbolConstants.SUPPRESS_PROTOTYPE at true, the tapestry core components will use a prototype implementations. In this case, communication between core components and jQuery plugin is much more difficult. this option is fine when you are using a lots of prototype code on the clien

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread John
Hi, I have found problems with jquery such as submit buttons not working when inside zones that get refreshed, and likewise for ajax dialog links. I have had to remove quite a bit of the jquery use from my current project, I'm even considering pulling it entirely from the product. It appears t

Re: jQuery autocomplete stops working when SUPPRESS_PROTOTYPE is true

2013-11-09 Thread François Facon
May be another javascript function redefined the hover event handler. what version do you use? any javascript console error? to diagnose this type of problem, you can disable other components one by one. could you share your .tml? 2013/11/9 Ilya Obshadko > This is weird, and I can't find what

Re: JQuery Datatable Bind Mixin

2013-09-11 Thread Barry Books
nday, 9 September 2013 7:05 PM > Subject: Re: JQuery Datatable Bind Mixin > > > See the element parameter. It takes a jQuery selector > > > On Mon, Sep 9, 2013 at 10:16 AM, john c wrote: > > > One more question with this jquery/bind mixin How can I make it apply

Re: JQuery Datatable Bind Mixin

2013-09-10 Thread john c
Is there a link to some documentation or sample somewhere? From: Barry Books To: Tapestry users ; john c Sent: Monday, 9 September 2013 7:05 PM Subject: Re: JQuery Datatable Bind Mixin See the element parameter. It takes a jQuery selector On Mon, Sep 9

Re: JQuery Datatable Bind Mixin

2013-09-09 Thread Barry Books
See the element parameter. It takes a jQuery selector On Mon, Sep 9, 2013 at 10:16 AM, john c wrote: > One more question with this jquery/bind mixin How can I make it apply > for the tbody only? Only the rows? I don't want the event to be fired > when clicking on a column name. It is in

Re: JQuery Datatable Bind Mixin

2013-09-09 Thread john c
One more question with this jquery/bind mixin How can I make it apply for the tbody only?   Only the rows?   I don't want the event to be fired when clicking on a column name. It is interfering  with the sorting.    Thanks.      ...

Re: JQuery Datatable Bind Mixin

2013-09-04 Thread john c
bind.callback="function(event,ui,u) {u.addContext(event.target.parentNode.childNodes[3].innerHTML);}" From: Thiago H de Paula Figueiredo To: Tapestry users Sent: Wednesday, 4 September 2013 7:45 AM Subject: Re: JQuery Datatable Bind Mixin On W

Re: JQuery Datatable Bind Mixin

2013-09-04 Thread Thiago H de Paula Figueiredo
On Wed, 04 Sep 2013 02:24:45 -0300, john c wrote: bind.callback="function(event,ui,u) {u.addContext(${currRow.fileID}); bind.callback="function(event,ui,u) {u.addContext(currRow.fileID); But it doesn't work. currRow is Null. That's the expected result. You're adding a callback, which will be

Re: JQuery Datatable Bind Mixin

2013-09-04 Thread Barry Books
______ > From: Barry Books > To: Tapestry users ; john c < > john998...@yahoo.com> > Sent: Friday, 30 August 2013 4:15 PM > Subject: Re: JQuery Datatable Bind Mixin > > > The callback is javascript. The bind mixin has no way of know what value > you would like to

Re: JQuery Datatable Bind Mixin

2013-09-04 Thread Nourredine K.
Hi, > My datatable is set to ajax mode (t:mode="true"). After searching the forums > it says I need @Environmental on the row variable. Added that then got other > errors. FYI, in last tapestry5-jquery release, there's no more need to use @Environmental on the row (see https://github.com/got5/

Re: JQuery Datatable Bind Mixin

2013-09-03 Thread john c
s. From: Barry Books To: Tapestry users ; john c Sent: Friday, 30 August 2013 4:15 PM Subject: Re: JQuery Datatable Bind Mixin The callback is javascript. The bind mixin has no way of know what value you would like to pass back so the callback gets the

Re: JQuery Datatable Bind Mixin

2013-08-30 Thread Barry Books
------ > > Now with the callback, where does this Java code go? > > > > > > From: Barry Books > To: Tapestry users > Sent: Friday, 30 August 2013 8:59 AM > Subj

Re: JQuery Datatable Bind Mixin

2013-08-30 Thread john c
ror: currRow is NULL. Why is that?   Now with the callback, where does this Java code go?  From: Barry Books To: Tapestry users Sent: Friday, 30 August 2013

Re: JQuery Datatable Bind Mixin

2013-08-30 Thread Barry Books
You will need to provide a javascript callback function to the mixin that puts the value into the url. It's called like this if ( callback ) { // TODO should work if value is array u.addContext = function(value) { u.url = u.url.replace(u.context,value)

Re: JQuery Datatable Bind Mixin

2013-08-29 Thread Taha Hafeez Siddiqi
Try curRow.fileID instead of ${curRow.fileID} as parameter to bind.context Sent from my iPhone On 30-Aug-2013, at 3:26 AM, john c wrote: > I am attempting to use the jquery/bind mixin with a datatable, but not having > success. > The relevant code is below. Basically I want to click a row and

Re: jquery jgrowl params not working

2013-06-27 Thread D.R.
Ciao Thiago, yes, happy on the one hand as i was able to figure out where the problem is and how to fix it. But sad on the other hand that my app now depends on custom changes of a lib. I did a post on the googlegroup of the tapestry-jquery guys. Manu wants me to make a fork and a pull request. S

Re: jquery jgrowl params not working

2013-06-26 Thread Thiago H de Paula Figueiredo
On Wed, 26 Jun 2013 17:17:46 -0300, D.R. wrote: Then i just rebooted my server and it works with retour.put("beforeClose", new JSONLiteral("function(e,m) {alert('About to close this notification!');}")); That's a correct way of doing that. but not with: retour.put("beforeClose", "function(e

Re: jquery jgrowl params not working

2013-06-26 Thread Thiago H de Paula Figueiredo
On Wed, 26 Jun 2013 16:35:23 -0300, D.R. wrote: Hi, Hi! "beforeClose" : function(e,m) {alert('About to close this notification!');}, so without the quotes, but alert is not called. I've never used JGrowl, so I cannot answer about that. The resulting JSON object does seem correct. Have y

Re: jquery jgrowl params not working

2013-06-26 Thread D.R.
ok, i've figured out the following: on http://stanlemon.net/2013/03/16/jgrowl-1-2-11/ they write: updated to jGrowl today that fixes an issue when triggering the shutdown method so i did download the latest version of jgrowl and hardcore replaced the jquery.jgrowl.js in the file the version 2.1.12

Re: jquery jgrowl params not working

2013-06-26 Thread D.R.
Hi, i already have played with JSONLiteral, but had no luck. If i do a: retour.put("beforeClose", new JSONLiteral("function(e,m) {alert('About to close this notification!');}")); it renders: "jGrowlAlertManager" : [ { "dismissURL" : "/index.layout.jgrowl:dismiss", "jgrowl" : { "position" : "cente

Re: jquery jgrowl params not working

2013-06-26 Thread Thiago H de Paula Figueiredo
On Wed, 26 Jun 2013 14:51:29 -0300, D.R. wrote: whoops, usually i declare my components in the page class, but in this project i wanted to write less code. I've checked the docs about expansions and this topic is now clear to me, thank you Thiago for your answer and your hint. :) You was

Re: jquery jgrowl params not working

2013-06-26 Thread D.R.
whoops, usually i declare my components in the page class, but in this project i wanted to write less code. I've checked the docs about expansions and this topic is now clear to me, thank you Thiago for your answer and your hint. You was right, i don't get this error anymore, but it still don't w

Re: jquery jgrowl params not working

2013-06-25 Thread Thiago H de Paula Figueiredo
On Tue, 25 Jun 2013 16:19:50 -0300, D.R. wrote: Hi @all, Hi! i want to use jgrowl for the alertmanager, in my .tml i have: Never, never, NEVER ever use expansions when passing values to parameters. Try (without the ${}) and the problem will probably go away. -- Thiago H. de Paula

Re: jquery JGrowl exception

2013-06-25 Thread Jan Fryblik
Thanks for answer.The joke is, its not my component. Its component in Tapestry-jquery module. So if i understood correctly... it is a bug and i should report it, isn't it?BR,JanOn Mon, 24 Jun 2013 23:42:36 +0200, Thiago H de Paula Figueiredo wrote:On Mon, 24 Jun 2013 17:54:14 -0300, Jan Frybl

Re: jquery JGrowl exception

2013-06-24 Thread Thiago H de Paula Figueiredo
On Mon, 24 Jun 2013 17:54:14 -0300, Jan Fryblik wrote:Hi guys,Hi!Caused by: org.apache.tapestry5.ioc.util.UnknownValueException: A component event handler method returned the value {}. Return type org.apache.tapestry5.json.JSONObject can not be handled.These "Return type XXX can not be handled" m

Re: jQuery/bind mixin does not submit field value onChange

2013-05-29 Thread Boris Horvat
.0. Do you have > a link to the JIRA issue or release notes or anything so that I can review > your bug report? > > Thanks, > Ben. > > > From: horvat.z.bo...@gmail.com > > Date: Tue, 28 May 2013 19:25:48 +0200 > > Subject: Re: jQuery/bind mixin does not submi

RE: jQuery/bind mixin does not submit field value onChange

2013-05-29 Thread Ben Titmarsh
mail.com > Date: Tue, 28 May 2013 19:25:48 +0200 > Subject: Re: jQuery/bind mixin does not submit field value onChange > To: users@tapestry.apache.org > > Hi, > > I recently reported a bug whcih I think could be what you are talking > about. This was fixed in the new version 3.

Re: jQuery/bind mixin does not submit field value onChange

2013-05-28 Thread Emmanuel DEMEY
Yes the 4.0.0 snap is for Tap 5.4. Please use 5.3.7-snap if you are using tap 5.3 Le 28 mai 2013 21:27, "Boris Horvat" a écrit : > Hm...I am not sure but I would expect that 4.0.0-SNAPSHOT is for upcoming > release of tapestry 5.4 > > I would try 3.3.7-SNAPSHOT just in case > > > On Tue, May 28,

Re: jQuery/bind mixin does not submit field value onChange

2013-05-28 Thread Boris Horvat
Hm...I am not sure but I would expect that 4.0.0-SNAPSHOT is for upcoming release of tapestry 5.4 I would try 3.3.7-SNAPSHOT just in case On Tue, May 28, 2013 at 9:20 PM, George Ludwig wrote: > Is that tap5-jquery 3.3.7-SNAPSHOT? I just checked my local copy, and it's > at 4.0.0-SNAPSHOT. Just

Re: jQuery/bind mixin does not submit field value onChange

2013-05-28 Thread George Ludwig
Is that tap5-jquery 3.3.7-SNAPSHOT? I just checked my local copy, and it's at 4.0.0-SNAPSHOT. Just a little confused... On Tue, May 28, 2013 at 10:25 AM, Boris Horvat wrote: > Hi, > > I recently reported a bug whcih I think could be what you are talking > about. This was fixed in the new version

Re: jQuery/bind mixin does not submit field value onChange

2013-05-28 Thread Boris Horvat
Hi, I recently reported a bug whcih I think could be what you are talking about. This was fixed in the new version 3.3.7-SNAPSHOT, are you using this? Cheers, Boris On Tue, May 28, 2013 at 4:31 PM, Jens Breitenstein wrote: > Hi Ben! > > Any particular reason why you need bind for capturing the

Re: jQuery/bind mixin does not submit field value onChange

2013-05-28 Thread Jens Breitenstein
Hi Ben! Any particular reason why you need bind for capturing the change event of a select? This works for me (honestly not tried in a AjaxFormLoop, so don't kill me): t:validate="required" blankOption="Always" value="schoolFinderSearchOptionValue" zone="schoolFinderZon

Re: JQuery tab widget - page in tab - setupRender not being called

2013-05-23 Thread Lance Java
> call the other pages setupRender() methods directly. What you are doing sounds really dodgy to me and against the tapestry principles. Why aren't you using a component?

Re: JQuery tab widget - page in tab - setupRender not being called

2013-05-23 Thread Thiago H de Paula Figueiredo
On Thu, 23 May 2013 00:03:02 -0300, Ken in Nashua wrote: Thanks Thiago... yes I am rendering Home.tml But it is rigged up with a two level nesting of tabs housing at least 6+ pages each. What do I do ? You're probably @InjectPage'ing the other pages already, so, in the Home setupRen

RE: JQuery tab widget - page in tab - setupRender not being called

2013-05-22 Thread Ken in Nashua
Thanks Thiago... yes I am rendering Home.tml But it is rigged up with a two level nesting of tabs housing at least 6+ pages each. What do I do ? When the selectValueEncoder gets called from the tml for my query form... I actually do my setupRender code there... but it feel kinda crooked doin

RE: JQuery tab widget - page in tab - setupRender not being called

2013-05-22 Thread Ken in Nashua
setupRender gets invoked (ever since I added public modifier)... but not until I clock GO for a submit event and even after that I lose context of the whole JQuery tab... and my page RosterQuery comes into Home.tml and blows away the whole context of the JQueryTab only showing the RosterQuery p

Re: JQuery tab widget - page in tab - setupRender not being called

2013-05-22 Thread Thiago H de Paula Figueiredo
On Wed, 22 May 2013 13:11:19 -0300, Ken in Nashua wrote: Folks, rosterQueryPage.setupRender() is never being called. This is expected, as RosterQueryPage isn't the one being rendered (or so I guess, the question itself is quite spare on details and I'm assuming you're renderting the

RE: JQuery tab widget - page in tab - setupRender not being called

2013-05-22 Thread Ken in Nashua
I noticed that my setupRender didnt have public @SetupRender public void setupRender() { But after adding public ... it made no difference. Still cannot get setupRender to invoke. Thanks for any tips. Ken

RE: Jquery Datatable ajax'd sort reverses

2013-01-24 Thread Tony Nelson
The problem is fixed in the snapshot I have. -Original Message- From: Emmanuel DEMEY [mailto:demey.emman...@gmail.com] Sent: Thursday, January 24, 2013 3:22 AM To: Tapestry users Subject: Re: Jquery Datatable ajax'd sort reverses Hi, I think I have already pushed the patch on the

Re: Jquery Datatable ajax'd sort reverses

2013-01-24 Thread Emmanuel DEMEY
Hi, I think I have already pushed the patch on the last SNAPSHOT (3.3.6-SNAPSHOT). Manu 2013/1/23 mwrohde > Excellent. Thank you. Do you happen to know a timeline? Or, a > workaround? > > > > > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Jquery-Datatable-

RE: Jquery Datatable ajax'd sort reverses

2013-01-23 Thread mwrohde
Excellent. Thank you. Do you happen to know a timeline? Or, a workaround? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Datatable-ajax-d-sort-reverses-tp5719457p5719459.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

RE: Jquery Datatable ajax'd sort reverses

2013-01-23 Thread Tony Nelson
That should be fixed in an upcoming release to tapestry-jquery. I worked with Demey from their team to get that resolved, he just needs to check in and push the fix. -Original Message- From: mwrohde [mailto:mro...@navicure.com] Sent: Wednesday, January 23, 2013 12:32 PM To: users@tapest

Re: JQuery PopUp on the Grid.

2012-12-22 Thread Emmanuel DEMEY
I think for closing the dialog you should add a javascript handler and close the pop with dialig('close') . Check the jquery ui doc. You form of yojr dialog should not be mapped to a zone ? I did not see it. Le 20 déc. 2012 20:36, "mateen" a écrit : > Hi, > > I have a Grid that is bound to a und

Re: JQuery Dialog Popup in my tml file.

2012-12-12 Thread Emmanuel DEMEY
The DocsJQueryDialog class is the Documentation page you are visiting. 2012/12/12 mateen > I have had a look, i dont understand where the DocsJQueryDialog class comes > into play ? Do we have to create a reference to it, in my parent tml java > file or what ? I wanted the ajax link. The code i

Re: JQuery Dialog Popup in my tml file.

2012-12-12 Thread mateen
I have had a look, i dont understand where the DocsJQueryDialog class comes into play ? Do we have to create a reference to it, in my parent tml java file or what ? I wanted the ajax link. The code is simple just dont understand where the DocsJQueryDialog class comes into play ? -- View this me

Re: JQuery Dialog Popup in my tml file.

2012-12-12 Thread Emmanuel DEMEY
Hi, Do you use an dialoglink or dialogajaxlink components, which will open the dialog ? Have a look to the template snippet in the documentation page (tabs "Example"). Manu 2012/12/12 mateen > I have included the JQuery dialog found here >

Re: Jquery Tooltip on production mode

2012-11-28 Thread Emmanuel DEMEY
You 're right. I think it the same problem as the one we are talking about on Tapestry5-jQuery mailing-list : https://groups.google.com/forum/?hl=fr&fromgroups=#!topic/tapestry5-jquery/2dpH1zsbZMU We can continue this discussion on this mailing-list ? can you check the version of jQuery and jQuer

Re: Jquery Tooltip on production mode

2012-11-27 Thread arterzatij
Doesn't work... -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718344.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe

Re: jQuery bind example does not work?

2012-11-24 Thread membersound
OK thanks, at least I'm glad that I now have a working example for jquery bind. -- View this message in context: http://tapestry.1045711.n5.nabble.com/jQuery-bind-example-does-not-work-tp5717712p5718239.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: jQuery bind example does not work?

2012-11-24 Thread Chris Poulsen
No, it wasn't a clean project, I just thought your example looked like it ought to work, so I got curious and added the couple of lines from the example, to an existing project. I simply copied the textfield you provided and wrapped it in a t:form, added the property the field is bound to + the on

Re: jQuery bind example does not work?

2012-11-24 Thread membersound
Damn. That's strange as the rest of my T5 application works just fine... Did you try it in a clean project and could provide the working sample? -- View this message in context: http://tapestry.1045711.n5.nabble.com/jQuery-bind-example-does-not-work-tp5717712p5718237.html Sent from the Tapestr

Re: jQuery bind example does not work?

2012-11-24 Thread Chris Poulsen
Your example works just fine here (tapestry 5.3.6/tapestry5-jquery 3.3.4). I added a void return type to onClick(). So it seems that you have screwed something else up... On Sat, Nov 24, 2012 at 4:47 PM, membersound wrote: > I had a look into this again, and still cannot get it to work, alth

Re: jQuery bind example does not work?

2012-11-24 Thread membersound
I had a look into this again, and still cannot get it to work, although it seems straight forward: .tml: .java: public onClick() { System.out.println("works"); //this never gets called! } Why is this not working?? -- View this message in context: http://tapestry.1045711.n5.nabble.com/jQ

Re: Jquery Tooltip on production mode

2012-11-24 Thread Lance Java
Can you clear your browsers cache and try again? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718223.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Jquery Tooltip on production mode

2012-11-23 Thread Lance Java
Yui isn't on your build path Have you done a clean deploy or a dirty deploy? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718216.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Jquery Tooltip on production mode

2012-11-23 Thread Lance Java
Type "mvn dependency:tree" at the command line to show your dependency hierarchy -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718210.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: Jquery Tooltip on production mode

2012-11-23 Thread arterzatij
I try this: -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718207.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: Jquery Tooltip on production mode

2012-11-23 Thread arterzatij
Seems like YUI pom avoiding is still no working. There are configuration that I missing? Thanks! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718206.html

Re: Jquery Tooltip on production mode

2012-11-23 Thread Lance Java
Can you send another screenshot now that YUI is not compressing the javascript? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718200.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: Jquery Tooltip on production mode

2012-11-22 Thread Emmanuel DEMEY
Hi Ernesto, Are you developing a full jQuery Application or a Prototype+jQuery one ? Manu 2012/11/22 ICE Ernesto Arteaga Zavala > Hi, > > Seems to be other problem. I disabled the YUI and doesn't work.. > > > 2012/11/22 Lance Java > > > Looks very similar to this: > > > > > http://tapestry.1

Re: Jquery Tooltip on production mode

2012-11-22 Thread Lance Java
Looks very similar to this: http://tapestry.1045711.n5.nabble.com/Problem-in-Production-mode-td5718120.html -- View this message in context: http://tapestry.1045711.n5.nabble.com/Jquery-Tooltip-on-production-mode-tp5718174p5718183.html Sent from the Tapestry - User mailing list archive at Nabbl

Re: jQuery bind example does not work?

2012-11-07 Thread membersound
Ok but what do I have to set the class parameter? I want to create a got5-jquery checkbox with a value change event in the backing. How would I have to change the following to make it work? Thanks alot -- View this message in context: http://tapestry.1045711.n5.nabble.com/jQuery-bind-examp

Re: jQuery submit button for beaneditform?

2012-11-06 Thread Thiago H de Paula Figueiredo
On Tue, 06 Nov 2012 10:50:33 -0200, membersound wrote: Ok, does this mean I have to place /every/ property of the object in it's own ? When did I say that? The answer is no. Because jQuery renders highlighted on mouseover) then beaneditform. So to say: I should forget about using beanedit

Re: jQuery submit button for beaneditform?

2012-11-06 Thread membersound
Ok, does this mean I have to place /every/ property of the object in it's own ? Because jQuery renders http://tapestry.1045711.n5.nabble.com/jQuery-submit-button-for-beaneditform-tp5717703p5717706.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: jQuery submit button for beaneditform?

2012-11-06 Thread Thiago H de Paula Figueiredo
On Tue, 06 Nov 2012 09:27:19 -0200, membersound wrote: Can I make use of Tapestry jQuery module within a t:beaneditform? Eg that the button is styled according to the jquery mixing? Or do I explicitly have to specify the button together with the mixin? value="Save" /> I only could get

Re: jQuery file does not exist when deployed on Tomcat?

2012-06-28 Thread filiprd
Hi Robert, You were right, I renamed the file and the app works very well on the server now. Thanks a lot. Cheers, Filip On Jun 28, 2012 1:53 AM, "Filip Radulovic" wrote: > Hi Robert, > > Thanks a lot for the reply. You are right, the name of the file I > reference in the class is different tha

Re: jQuery file does not exist when deployed on Tomcat?

2012-06-27 Thread filiprd
Hi Robert, Thanks a lot for the reply. You are right, the name of the file I reference in the class is different than the name of the actual file in the file system (case-sensitive issue). I have fixed that, so I will update here after I hear from the people in charge for the server, but I think t

Re: jQuery file does not exist when deployed on Tomcat?

2012-06-27 Thread Robert Zeigler
I'm guessing you have a file name case sensitivity problem. The Windows file system is case-insensitive. The commonly used file systems on Linux are case-sensitive. On windows: bettertooltip.js and betterToolTip.js are the same file. On Linux, they are two different files. Check your files and th

Re: JQuery Calendar problem.

2012-04-04 Thread generalkimi
I use Tapestry version 5.2.6... -- View this message in context: http://tapestry.1045711.n5.nabble.com/JQuery-Calendar-problem-tp5610238p5610726.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubsc

Re: JQuery Calendar problem.

2012-04-04 Thread generalkimi
If i set Date in java and DateField in tml call both Calendar. -- View this message in context: http://tapestry.1045711.n5.nabble.com/JQuery-Calendar-problem-tp5610238p5612601.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: JQuery Calendar problem.

2012-04-02 Thread trsvax
While that will work look at https://github.com/got5/tapestry5-jquery/blob/master/src/main/java/org/got5/tapestry5/jquery/services/javascript/JQueryDateFieldStack.java You can create your own and override the jQuery one in your AppModule. -- View this message in context: http://tapestry.1045711

Re: JQuery Calendar problem.

2012-04-02 Thread generalkimi
Resolved... :) My solution: -- go to *C:\Users\/user/\.m2\repository\org\got5\tapestry5-jquery\/jqueryVersion/* -- Open tapestry5-jquery-/jqueryVersion/.rar file -- go to *tapestry5-jquery-/jqueryVersion/.jar\org\got5\tapestry5\jquery\ui_1_8* -- delete jquery.ui.datepicker.js file -- now ca

Re: JQuery Calendar problem.

2012-04-02 Thread generalkimi
Yes, i use JQuery library :) and i try this: ** in java * @Persist @Property private String testDate;* when press submit, exception: *Cannot format given Object as a Date* -- View this message in context: http://tapestry.1045711.n5.nabble.com/JQuery-Calendar-problem-t

Re: JQuery Calendar problem.

2012-04-02 Thread generalkimi
I use Tapestry version is 5.2.6... -- View this message in context: http://tapestry.1045711.n5.nabble.com/JQuery-Calendar-problem-tp5610238p5610724.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsu

Re: JQuery Calendar problem.

2012-04-02 Thread generalkimi
It works, but calls JQuery Calendar and default Calendar. :) Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/JQuery-Calendar-problem-tp5610238p5610631.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: JQuery Calendar problem.

2012-04-02 Thread pieter
It's a date so use a date http://tapestry5-jquery.com/core/docsdatefield -- View this message in context: http://tapestry.1045711.n5.nabble.com/JQuery-Calendar-problem-tp5610238p5611668.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: JQuery Calendar problem.

2012-04-01 Thread ksrijith
I'm sorry.. I thought you are using http://tapestry5-jquery.com Tapestry5 JQuery library . You can use that instead of adding Jquery separately to replace the prototype components with JQuery based components. You can try that out and see if you are going to be using JQuery in your project.

Re: JQuery Calendar problem.

2012-04-01 Thread ksrijith
If you are not using Prototype components you can suppress them by adding the following to the AppModule.contributeFactoryDefaults configuration.override(JQuerySymbolConstants.SUPPRESS_PROTOTYPE, "true"); This would allow usage of only JQuery components instead of Prototype ones. - -- Don'

Re: JQuery Calendar problem.

2012-04-01 Thread ksrijith
Can you try as shown below: and in the java: @Property @Persist private Date testDate; I think you need to make the property as @Persist but you could try it without it as well and see if it works or not. - -- Don't Forget to Rate -- View this message in context: http://tapestry.1045711.n

  1   2   >