Re: AjaxFormLoop problem

2013-04-12 Thread baka
I thinking about this solution. Unfortunately I must add this option to all ajax form loop rows both of which are persist in DB and new added rows witch arent persist anywhere yet. It should be option which always take current row and paste it below copying all data from current row, regardless

Re: color picker

2013-04-12 Thread René Bernhardsgrütter
Hi Ken, > I would like to use the JQuery color picker. > > http://www.eyecon.ro/colorpicker/#implement > > Is there a tapestry version implemented ? I don't think so, since this JS doesn't have to do anything with Tapestry (except the use of the $-sign in JavaScript). Just implement it as any ot

Re: Now hotness at SX vs 5.4

2013-04-12 Thread Howard Lewis Ship
I'm creating a proof-of-concept using AngularJS right now so I hope to have a good understanding of it soon. On Fri, Apr 12, 2013 at 1:17 PM, Mark Murphy wrote: > > On Mar 15, 2013, at 9:52 AM, Howard Lewis Ship wrote: > >> I'm very, very interested in AngularJS. It looks like >> Tapestry comp

Re: Tapestry 5.4-alpha-3

2013-04-12 Thread François Facon
By the way, tapestry5-portlet is also ready to be used with 5.4. But I am still looking for a way to run integration tests inside Pluto with Gradle. Perhaps the use of Arquillian with Pluto under gradle is the solution. 2013/4/12 Howard Lewis Ship > That's great news! > > > On Fri, Apr 12, 201

Re: Now hotness at SX vs 5.4

2013-04-12 Thread Mark Murphy
On Mar 15, 2013, at 9:52 AM, Howard Lewis Ship wrote: I'm very, very interested in AngularJS. It looks like Tapestry completely on the client, and I suspect Tapestry on the server would be an ideal complement to it. Same very interested in this. I did not see this on my radar when I

Re: Tapestry 5.4-alpha-3

2013-04-12 Thread François Facon
Howard go a step forward in jQuery integration by using coffeescript. So Tapestry-jQuery.js that was provided by Tapestry-jQuery is no more needed. Tapestry-jQuery have to be consider as a lib that ease the use of some jQuery Plugin used by Kawwa. 2013/4/12 George Christman > I'm just curious i

Re: Tapestry 5.4-alpha-3

2013-04-12 Thread Howard Lewis Ship
That's great news! On Fri, Apr 12, 2013 at 12:35 PM, François Facon wrote: > Thanks to Emmanuel, tapestry-jquery is already working fine with 5.4. > > > > 2013/4/12 Howard Lewis Ship > > > We don't control the tapestry-jquery library; I actually haven't looked > at > > it. I suspect it will nee

DateField popup position

2013-04-12 Thread Jonathan Martin
I'm using v5.3.6 and created a DateField object in my form but the position of the calendar popup is offset from the text field/icon regardless of which browser I use. It appears at a fixed distance from the left border of the browser winder instead of being relative to the widget button. Is th

Re: Tapestry 5.4-alpha-3

2013-04-12 Thread François Facon
Thanks to Emmanuel, tapestry-jquery is already working fine with 5.4. 2013/4/12 Howard Lewis Ship > We don't control the tapestry-jquery library; I actually haven't looked at > it. I suspect it will need to be reworked significantly for 5.4. > > > On Fri, Apr 12, 2013 at 9:40 AM, George Christ

Re: client side js and checkboxes

2013-04-12 Thread George Christman
You would need to write your own JS for this as Tapestry has no default ajax support for the checkbox component. Have you checked out the Tapestry mixins as an option for handling this? On Sun, Apr 7, 2013 at 8:51 AM, John wrote: > I have a page with 3 checkboxes, for one of them when it is unche

Re: Tapestry 5.4-alpha-3

2013-04-12 Thread Howard Lewis Ship
We don't control the tapestry-jquery library; I actually haven't looked at it. I suspect it will need to be reworked significantly for 5.4. On Fri, Apr 12, 2013 at 9:40 AM, George Christman wrote: > I'm just curious if Tapestry5.4 will just be integrating the > Tapestry-Jquery library? > > On Su

Re: MultiFileUpload component

2013-04-12 Thread George Christman
If you happen to be using Tapestry-Jquery you could always use the AjaxUpload. http://tapestry5-jquery.com/docs/components/docsajaxupload;jsessionid=E303D1207992233E4CC5A7EA22A1978A.536E55380E32 On Fri, Apr 12, 2013 at 12:39 PM, Ben Titmarsh wrote: > Hello, > > I would like to know if there is a

Re: Tapestry 5.4-alpha-3

2013-04-12 Thread George Christman
I'm just curious if Tapestry5.4 will just be integrating the Tapestry-Jquery library? On Sun, Apr 7, 2013 at 10:29 AM, hantsy wrote: > > Created a new thread for it. Thanks > > On 4/7/2013 22:16, Bob Harner wrote: >> Hantsy, you might want to start a separate thread. Your question isn't >> about

MultiFileUpload component

2013-04-12 Thread Ben Titmarsh
Hello, I would like to know if there is any native or third party Tapestry library that provides a component to upload multiple files. Similar to this: http://tapestry.apache.org/uploading-files.html But I'd like to be able to multi select the files and upload them all at once. Thanks!

Re: AjaxFormLoop problem

2013-04-12 Thread George Christman
Providing the data has been saved to the database and an id exist, couldn't you use something like Button next to your remove action. Then in the backend create an event handler for your action, Object onActionFromYourId(Person person) { //do something return someZone.getBody(); } Lastly, p

RE: How Tapestry handles null values in template

2013-04-12 Thread Poder, Jacob
You are very welcome. See here for documentation and examples of using tapestry expression language: http://tapestry.apache.org/property-expressions.html Best, Jacob -Original Message- From: David Siedlecki [mailto:david.siedle...@beatsystems.com] Sent: 12. april 2013 13:28 To: Tapestr

Re: How Tapestry handles null values in template

2013-04-12 Thread David Siedlecki
Thank you!!! That's bugged me for ages. Had no idea you could do that. - Original Message - From: "Jacob Poder" To: "Tapestry users" Sent: Friday, 12 April, 2013 12:17:26 PM Subject: RE: How Tapestry handles null values in template Hi, Try ${person?.name} Best, Jacob -Original

RE: How Tapestry handles null values in template

2013-04-12 Thread Poder, Jacob
Hi, Try ${person?.name} Best, Jacob -Original Message- From: David Siedlecki [mailto:david.siedle...@beatsystems.com] Sent: 12. april 2013 13:15 To: users@tapestry.apache.org Subject: How Tapestry handles null values in template Hi. In my template I can do this... ${person.name} if