Re: Tapestry class variables behavior

2012-03-23 Thread karthi
Thank you so much for sharing your knowledge. Your information is helpful to understand! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-class-variables-behavior-tp557p5591265.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Tapestry5 services cookies not get writes in samsung galaxy nexus s

2012-03-23 Thread karthi
Hi, I am developing an application using tapestry (my first app), in that am using cookies like below public class Portfolio { @org.apache.tapestry5.ioc.annotations.Inject private Cookies cookies; cookies.writeCookieValue("isUserLogin", "True", 60*60); cookie

Re: Got5-Jquery compatibility with Grid and BeanEditForm / Tapestry-Bootstrap

2012-03-23 Thread Lenny Primak
Forget about removing Got5-JQuery. If it isn't the problem let's table that issue. I will wind up using it anyway. About the CSS issues: In any CSS/JS library modules for T5, i.e. Got5-JQuery, T5Conduit for LessCSS/CoffeeScript, etc. the actual CSS or JS is included in the library. If you add

Re: Tynamo Federatedaccounts OpenID module coming up...

2012-03-23 Thread Taha Hafeez Siddiqi
Sorry, don't know of any such site. :) regards Taha On Mar 23, 2012, at 11:53 PM, Kalle Korhonen wrote: > Right right, but are the any lives sites using this you can point me > to? I'm mostly concerned about the ui and I spent some time trying to > find a site that uses this but since the sites

Re: Upload file problem

2012-03-23 Thread Taha Hafeez Siddiqi
Hi File upload component does not work with ajax. regards Taha On Mar 24, 2012, at 12:52 AM, Borko Djurovic wrote: > I have simple page that contains upload component. When I provide file for > upload and submit the form, validation can't pass. > > This is part of Index.tml page: > >

Upload file problem

2012-03-23 Thread Borko Djurovic
I have simple page that contains upload component. When I provide file for upload and submit the form, validation can't pass. This is part of Index.tml page: File Path:

Re: Provide a login for my tapestry application

2012-03-23 Thread micha899
Maybe the problem with the tynamo mailing list is because is subscribed with @gmail and my send from adress in mails @googlemail. I will check that. I used the dafault login page and added the /security/** to anonymous access. But ordered it after the FormAuthenticationFilter. I moved it and it se

Re: Tynamo Federatedaccounts OpenID module coming up...

2012-03-23 Thread Kalle Korhonen
Right right, but are the any lives sites using this you can point me to? I'm mostly concerned about the ui and I spent some time trying to find a site that uses this but since the sites don't really advertise what they are using and I don't know beforehand how it looks like, it's kind of difficult

Re: Provide a login for my tapestry application

2012-03-23 Thread Kalle Korhonen
On Fri, Mar 23, 2012 at 10:19 AM, micha899 wrote: > Atm. I have implemented this with the tynamo security framework. I can't > access the "tynamo users mailing list". Am I the only one who cant access > it? You have to subscribe via xircles.codehaus.org. What's the error you are seeing? > My pro

Provide a login for my tapestry application

2012-03-23 Thread micha899
I'am searching for a way to provide a login which is required to access my whole application and secure a area on my web application by a role check. Atm. I have implemented this with the tynamo security framework. I can't access the "tynamo users mailing list". Am I the only one who cant access i

Re: Grid is empty after inPlaceUpdate

2012-03-23 Thread Stephan Windmüller
On 23.03.2012 00:36, Bob Harner wrote: > I suspect the advice about restricting the use of onActivate for > activation context purposes came from > http://jumpstart.doublenegative.com.au/jumpstart/examples/navigation/onactivateandonpassivate/3 Yes, that is most likely. But I will take Thiago's a

Load persistent data twice

2012-03-23 Thread Sascha Schaefer
Hello, maybe you can help us with the following problem. We are using Tapestry 4.0.2 for our web application where each of the web pages overrides the org.apache.tapestry.event.PageValidateListener#pageValidate(org.apache.tapestry.event.PageEvent) method to load necessary data from the database

Re: Got5-Jquery compatibility with Grid and BeanEditForm / Tapestry-Bootstrap

2012-03-23 Thread Barry Books
On Thu, Mar 22, 2012 at 9:42 PM, Thiago H. de Paula Figueiredo wrote: > On Thu, 22 Mar 2012 19:03:16 -0300, trsvax wrote: >> >> different template. All three have drawbacks but at least modifying the >> DOM does not require understanding how the component works. > > > I think that's the way to go

Re: Tapestry class variables behavior

2012-03-23 Thread Lance Java
Tapestry does a very clever trick when it comes to member variables on Components and Pages. It re-writes the byte code of the class so that all member variable access is done via getters(). It then re-writes the getters so that it looks up the variables from thread local maps instead of from the c

Re: jQuery and Submit button - Tapestry 5 problem

2012-03-23 Thread Emmanuel DEMEY
I have just tested your Application with Tapestry5-jQuery 3.2.0, and SUPPRESS_PROTOTYPE=true. And your problem comes from wl_Forms.js !! At the same time, do not include jquery.js a,d jQuery.noConflict() by yourself. Tapestry5-jQuery will do it for you. Manu 2012/3/22 eleanorltd > No this is n

Tapestry class variables behavior

2012-03-23 Thread karthi
Hi, I have a class called Test in my project public class Test { private List newsItems; } Will tapestry creates this object every time when called or initialize once & reuse every time like servlet? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-class-va

Re: MarkupWriter + HTML (5) Validation

2012-03-23 Thread mem
@Steve: Yes, it seems like the same issue to me, the attributes are taken out from the dtd's. @Thiago: Thanks for the response, i've taken a look at those classes and many more while debugging this behavior and investigating where those attributes come from. The model in use is the htmlModel/Def