RE: Tapestry 4.1 Migration to Tapestry 5

2016-06-23 Thread Mukesh Chandra
So they can share the session? -Original Message- From: Thiago H de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: Thursday, June 23, 2016 7:51 PM To: Tapestry users Subject: Re: Tapestry 4.1 Migration to Tapestry 5 On Thu, 23 Jun 2016 11:05:38 -0300, Mukesh Chandra wrote: > Hi All

Re: obtaining markup in a page class to send in email

2016-06-23 Thread Thiago H de Paula Figueiredo
On Thu, 23 Jun 2016 12:14:42 -0300, Qbyte Consulting wrote: I am using T5.3.6 and sending the html hidden in the form causes jetty exceptions, it's too much payload. Look like I have to do something server side, template rendering from the page class would be ideal. Can I enhance my app w

Regexp validation fails for numeric fields

2016-06-23 Thread Ricardo Veloso
Tapestry 5.4.1 is failing for regexp validations when they are related to numeric fields. Example of regexp applied to a numeric field validation: [0-9]+(\.[0-9][0-9]?)? This fails because in validation.js matches function uses input.match(re); Well if the regexp is for numeric field parseNumber

RE: Tapestry 4.1 Migration to Tapestry 5 or an alternative

2016-06-23 Thread Mukesh Chandra
Thanks Thiago! Regards Mukesh -Original Message- From: Thiago H de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: Thursday, June 23, 2016 8:37 PM To: Tapestry users Subject: Re: Tapestry 4.1 Migration to Tapestry 5 or an alternative On Thu, 23 Jun 2016 11:34:59 -0300, Mukesh Chandra

Re: obtaining markup in a page class to send in email

2016-06-23 Thread Qbyte Consulting
I am using T5.3.6 and sending the html hidden in the form causes jetty exceptions, it's too much payload. Look like I have to do something server side, template rendering from the page class would be ideal. Can I enhance my app with this Tapestry 5.4 service, or is it incompatible? Yes some smooth

Re: Tapestry 4.1 Migration to Tapestry 5 or an alternative

2016-06-23 Thread Thiago H de Paula Figueiredo
On Thu, 23 Jun 2016 11:34:59 -0300, Mukesh Chandra wrote: What are the recommendations then? Move stuff from T4 to T5 one piece at a time. -- Thiago H. de Paula Figueiredo Tapestry, Java and Hibernate consultant and developer http://machina.com.br -

RE: Tapestry 4.1 Migration to Tapestry 5 or an alternative

2016-06-23 Thread Mukesh Chandra
What are the recommendations then? -Original Message- From: Thiago H de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: Thursday, June 23, 2016 7:51 PM To: Tapestry users Subject: Re: Tapestry 4.1 Migration to Tapestry 5 or an alternative On Thu, 23 Jun 2016 10:27:46 -0300, Mukesh Chan

RE: Tapestry 4.1 Migration to Tapestry 5

2016-06-23 Thread Mukesh Chandra
Can you send a sample please. I need to build this project using ANT Regards Mukesh Chandra -Original Message- From: Thiago H de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: Thursday, June 23, 2016 7:51 PM To: Tapestry users Subject: Re: Tapestry 4.1 Migration to Tapestry 5 On Thu

Re: Tapestry 4.1 Migration to Tapestry 5

2016-06-23 Thread Thiago H de Paula Figueiredo
On Thu, 23 Jun 2016 11:05:38 -0300, Mukesh Chandra wrote: Hi All Hi! Can I have both the Tapestry 5 and Tapestry 4 pages in same project Yes. Even in the same webapp. -- Thiago H. de Paula Figueiredo Tapestry, Java and Hibernate consultant and developer http://machina.com.br

Re: Tapestry 4.1 Migration to Tapestry 5 or an alternative

2016-06-23 Thread Thiago H de Paula Figueiredo
On Thu, 23 Jun 2016 10:27:46 -0300, Mukesh Chandra wrote: Hi Hi! We have our webApplication written in Tapestry 4. We want to migrate to Tapestry 5. How easy is it to do this migration? It's a complete rewrite of your web layer. Do we have any tools available to achieve this? No. -

Re: obtaining markup in a page class to send in email

2016-06-23 Thread Thiago H de Paula Figueiredo
On Thu, 23 Jun 2016 10:25:52 -0300, Qbyte Consulting wrote: Hi, Hi! What would be the way to implement an email button on a page that sends some of the markup to someone? Is there a slick way to do this, or is it more messy like grabbing the markup in JS and passing through the ajax reque

RE: Tapestry 4.1 Migration to Tapestry 5

2016-06-23 Thread Mukesh Chandra
Hi All Can I have both the Tapestry 5 and Tapestry 4 pages in same project and build them using ANT? I am new to Tapestry, your help is appreciated. Regards Mukesh NOTICE: This e-mail is intended solely for the use of the individual to whom it is addressed an

Re: Tapestry5.4.0 'ProgressiveDisplay' ajax call fails to render page on IE 11

2016-06-23 Thread sheikh hossain
Finally I have made it to work. Here's what I had to do. In case someone has the same issue. In my AppModule.java configuration.add(SymbolConstants.JAVASCRIPT_INFRASTRUCTURE_PROVIDER, "jquery"); and ... @Contribute(Compatibility.class) public static void disableScriptaculous(MappedConfig

Tapestry 4.1 Migration to Tapestry 5 or an alternative

2016-06-23 Thread Mukesh Chandra
Hi We have our webApplication written in Tapestry 4. We want to migrate to Tapestry 5. How easy is it to do this migration? Do we have any tools available to achieve this? What are your recommendations and strategies to achieve this? Your help is appreciated. Regards Mukesh Chandra _

obtaining markup in a page class to send in email

2016-06-23 Thread Qbyte Consulting
Hi, What would be the way to implement an email button on a page that sends some of the markup to someone? Is there a slick way to do this, or is it more messy like grabbing the markup in JS and passing through the ajax request? Anything that would make easier to perform an XML transformation wou