Re: Eclipse import of the sources.

2012-03-26 Thread annon88
Thiago H de Paula Figueiredo wrote > > Take a look at the Gradle documentation to know how to generate the > Eclipse > project files. > If you mean I should use the command "gradle eclipse", please read my initial post. -- View this message in context: http://tapestry.1045711.n5.nabble.com

RE: T5.2.6 jJquery Plugin 2.6.0 Form validation

2012-03-26 Thread resign
I don't specially use the jquery validation, the library(tapestry5-jquery-2.6.0.jar) is still in my classpath. Here is my page. http://tapestry.apache.org/schema/tapestry_5_1_0.xsd";> Empty field: And Java file public class AdminSearch{ @Property private String helloS

how we can use HttpOnly in Tapestry

2012-03-26 Thread Athneria, Mahendra
Can someone tell me the example how we can use HttpOnly in tapestry? Regards, Mahendra This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destro

RE: T5.2.6 jJquery Plugin 2.6.0 Form validation

2012-03-26 Thread WINDEY Pieter AWL-IT
See https://github.com/got5/tapestry5-jquery for more information. But you are trying to place in your own jquery-validation script? Maybe you can also find usefull help on http://jumpstart.doublenegative.com.au/jumpstart/examples/input/novalidationbubbles1 -Original Message- From: resig

RE: T5.2.6 jJquery Plugin 2.6.0 Form validation

2012-03-26 Thread resign
Hi Pieter >Your code is not even valid XML ! Yes, You're right. I typed this code before i had my coffee should it be. >Are you using tapestry5-jquery? yes >Are you mixing prototype & jquery? I am ashamed, but I can not reply to that, because I don't know if i do. i think yes. How can i us

RE: T5.2.6 jJquery Plugin 2.6.0 Form validation

2012-03-26 Thread WINDEY Pieter AWL-IT
Your code is not even valid XML ! Are you using tapestry5-jquery? Are you mixing prototype & jquery? -Original Message- From: resign [mailto:sergejb...@yahoo.de] Sent: Tuesday 27 March 2012 07:43 To: users@tapestry.apache.org Subject: T5.2.6 jJquery Plugin 2.6.0 Form validation Good mor

T5.2.6 jJquery Plugin 2.6.0 Form validation

2012-03-26 Thread resign
Good morning everyone. I have a problem to validate my form elements. Index.tml: So, if i try to submit emty form, i get the org.apache.tapestry5.runtime.ComponentEventException . But i'm waiting for Tapestry warning "please fill out the fields" (or so...) Can it be a compat

Re: T5.3 datetime settings question

2012-03-26 Thread Steve Eynon
Our apps have something like this in the module: @Startup public static void setDefaultTimeZones(@Inject @Symbol(PlatformSymbols.DEFAULT_TIMEZONE_TO_UTC) boolean setTimezoneToUtc) { if (setTimezoneToUtc) { System.setProperty("user.timezone", UTC); org.joda.datetime.DateTimeZone

Re: T5.3 datetime settings question

2012-03-26 Thread Paul Stanton
you need to change the timezone setting for the jvm via -Duser.timezone, but even then you need to patch an outstanding bug with the DateField: https://issues.apache.org/jira/browse/TAP5-841 On 25/03/2012 7:48 AM, bigcache1 wrote: Hello, everybody. I want to set the time in the application to

Re: Tynamo Federatedaccounts OpenID module coming up...

2012-03-26 Thread Kalle Korhonen
2012/3/26 Jure Jeseničnik : > First of all I hope that you find my contribution useful. I wish I could have > done more. Jure, absolutely useful. You had pretty much hammered the federatedaccounts-facebook code to do openid instead and I had changed some things around meanwhile, but I like starti

Re: Tapestry5 services cookies not get writes in samsung galaxy nexus s

2012-03-26 Thread Kalle Korhonen
It's entirely browser dependent. Try using expires instead of max-age (expires was used in some http 1.0 implementations before max-age took over in http 1.1). You need to write the raw headers for it, see http://mrcoles.com/blog/cookies-max-age-vs-expires/. Kalle On Mon, Mar 26, 2012 at 4:38 AM

Re: Dynamic CSS depending on URL

2012-03-26 Thread Thiago H. de Paula Figueiredo
On Mon, 26 Mar 2012 12:00:03 -0300, kado wrote: Hi, Hi! My webapp now is loading the stylesheets in the Layout component in this way: @IncludeStylesheet({"context:css/mainLayout.css","context:css/components.css"}) I have been looking for a solution in the mailing list and didn't find a

Re: Eclipse import of the sources.

2012-03-26 Thread Thiago H. de Paula Figueiredo
On Sat, 24 Mar 2012 12:59:36 -0300, annon88 wrote: I try to import the sources in Eclipse. Just for fun and learn. I know that gradle install does a maven install of the archive artifacts into my local .m2 cache. But it does not create the pom.xml's which I could import easy with "Import

Dynamic CSS depending on URL

2012-03-26 Thread kado
Hi, I have my webapp that can be used from facebook now. This means that the app is embebed so all the widths and heights must be changed to fit in the facebook frame. My idea is to load the css depending on the url, if the url is facebook) I will load a particular stylesheet. Otherwise I will us

Re: Tapestry5 services cookies not get writes in samsung galaxy nexus s

2012-03-26 Thread karthi
Thank you for your reply, In javax.servlet also can't able to set the max age, if I set so then in the samsung galaxy nexus s mobile the cookies does not get write or saved In tapestry services cookies also worked now in the same device by removing the max age parameter like below: cookies.writ

Re: Communication with the server failed: undefined

2012-03-26 Thread Denis Stepanov
https://issues.apache.org/jira/browse/TAP5-1873 There is a description what should you change to make it work, copy function from tapestry.js, apply changes and replace it: Tapestry.ajaxRequest = ... and for better loging: Tapestry.ajaxExceptionHandler = ... Denis Mar 26, 2012 v 1:14 PM, Beat

RE: Communication with the server failed: undefined

2012-03-26 Thread Anuj Mittal
Exactly that is happening in my case with every round trip I am getting this error, and its showing up on ui screen which is looking very bad. -Original Message- From: Beat Durrer [mailto:bdur...@gmail.com] Sent: Monday, March 26, 2012 4:44 PM To: Tapestry users Subject: Re: Communicatio

Re: Communication with the server failed: undefined

2012-03-26 Thread Beat Durrer
I have this issue too. It occured with the ZoneUpdater from the jumpstart project (http://jumpstart.doublenegative.com.au/) It does not happen in every combination and I couldn't find out what's causing it so I gave up in the end. The code itself works as expected, but it records this error messag

RE: Tynamo Federatedaccounts OpenID module coming up...

2012-03-26 Thread Jure Jeseničnik
Hi Kalle. First of all I hope that you find my contribution useful. I wish I could have done more. Regarding your questions: 1) I would definitely like to see as many Id providers as possible or at least a possibility to add as many as you would like. I'm pretty sure there will be some users

[ANNOUNCEMENT] Introducing tapestry-activiti

2012-03-26 Thread Alejandro Scandroli
The Tynamo team doesn't rest and is at it again, bringing you a new Tapestry module: tapestry-activiti. This module allows you to integrate Activiti into your Tapestry application. Activiti is a workflow and Business Process Management (BPM) platform. Its core is a super-fast and rock-solid BPMN

Communication with the server failed: undefined

2012-03-26 Thread Anuj Mittal
Hi All, I am calling server side function using ajax depending on the select control and updating a zone accordingly. Everything is working perfectly except I got "Communication with the server failed: undefined" on every ajax call. Has anybody faced this issue? With Regards, Anuj Mittal ---

Re: Upload file problem

2012-03-26 Thread Bob Harner
https://github.com/valums/file-uploader is widely thought of as the best ajax file upload implementation, and there are two Tapestry integrations that I know of: 1) Taha's https://github.com/tawus/tawus/tree/master/tawus-ajaxupload 2) http://tapestry5-jquery.com/components/docsajaxupload The Val

Re: third-party grid

2012-03-26 Thread Lance Java
Viewing the source of http://trirand.com/blog/jqgrid/jqgrid.html shows that the demo is using a custom theme ( http://trirand.com/blog/jqgrid/themes/redmond/jquery-ui-1.8.1.custom.css) You can set the theme in tapestry5-jquery by setting the JQuerySymbolConstants.JQUERY_UI_DEFAULT_THEME applicatio

Re: third-party grid

2012-03-26 Thread csckid
thanks I was looking for that.. But is it possible to make the UI like the one on jqgrid. Can I change the css? -- View this message in context: http://tapestry.1045711.n5.nabble.com/third-party-grid-tp5592196p5594518.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: Upload file problem

2012-03-26 Thread Lance Java
Is ajax support for file upload on Tapestry's roadmap? It's easy enough to implement by posting the form to a hidden iframe. On Saturday, 24 March 2012, Taha Hafeez Siddiqi wrote: > Hi > > File upload component does not work with ajax. > > regards > Taha > > On Mar 24, 2012, at 12:52 AM, Borko Dj

Re: third-party grid

2012-03-26 Thread Emmanuel DEMEY
You can have a look to the demo application (src/test/ packages). Just download the project, and run mvn:jetty:run, and you will have a sample. Manu 2012/3/26 csckid > How do I use it? I am pretty novice > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/third-party-g