Re: formState="NONE" is it safe to use with persistent properties ?

2015-01-30 Thread Thiago H de Paula Figueiredo
On Fri, 30 Jan 2015 10:20:30 -0200, nhhockeyplayer nashua wrote: Folks, I got a Home Page with a Gallery component sitting on top. I am operating three loops 1. loop to render pagination links This one should have form 2. nested loop to render collection looping columns and rows If I

Re: formState="NONE" is it safe to use with persistent properties ?

2015-01-30 Thread George Christman
You need to provide more code, but it sounds like your reloading the loop before persisting your items per page, then on your second change it picks up your persisted value from your first change. That would be my guess. Why not put those values in the url so they become bookmarkable, less memory c

RE: formState="NONE" is it safe to use with persistent properties ?

2015-01-30 Thread nhhockeyplayer nashua
Ok its a lot better now... I only got it to reproduce once... but that may have been a glitch. Plus Geoff identified some javascript errors I been too lazy to repair. I will try to find some time to clean those up. I integrated Angular to this and haven't gotten that running cleanly yet. Bu

Re: IntelliJ and Tapestry testing

2015-01-30 Thread Boris Horvat
yea I found that place 10 min ago, I was putting the arguments in the wrong place... the strange thing is that the error about cometd is not present any more when I run single test...still there when I run it using the maven, but it doesn't really cause any issues thanks On Sat Jan 31 2015 at 00

Re: formState="NONE" is it safe to use with persistent properties ?

2015-01-30 Thread Chris Poulsen
Sounds like you should take a look at valueencoders. http://tapestry.apache.org/using-select-with-a-list.html#UsingSelectWithaList-ValueEncoder is one example On Fri, Jan 30, 2015 at 1:24 PM, nhhockeyplayer nashua < nhhockeypla...@hotmail.com> wrote: > I goto home page > > I select itemsPerPage

Re: IntelliJ and Tapestry testing

2015-01-30 Thread Stephan Windmüller
On 30.01.2015, Boris Horvat wrote: > I have created a testng.xml and put details about my test class to run, if > I run this from maven all is working fine, but I can't get it to run using > an IntelliJ as it complains about the missing property > tapestry.execution-mode. In the Run/Debug config

RE: formState="NONE" is it safe to use with persistent properties ?

2015-01-30 Thread nhhockeyplayer nashua
Best regards and thanks... KEN From: nhhockeypla...@hotmail.com To: thiag...@gmail.com; users@tapestry.apache.org Subject: RE: formState="NONE" is it safe to use with persistent properties ? Date: Fri, 30 Jan 2015 14:20:24 -0500 Thanks Thiago, I kept the formState="NONE" for the propertie

RE: formState="NONE" is it safe to use with persistent properties ?

2015-01-30 Thread nhhockeyplayer nashua
Thanks Thiago, I kept the formState="NONE" for the properties. I put formState="ITERATION" for the image loop which marks up editable images. The issue persists... on the controls... try it yourself and see http://psinh.ddns.net:9011/psi/home set tableColumns to 5 that works set tableColumns

Re: IntelliJ and Tapestry testing

2015-01-30 Thread Boris Horvat
Clicked wrong button by mistake. So apologies for that. I have created a testng.xml and put details about my test class to run, if I run this from maven all is working fine, but I can't get it to run using an IntelliJ as it complains about the missing property tapestry.execution-mode. Does anyone

IntelliJ and Tapestry testing

2015-01-30 Thread Boris Horvat
I realized this might be a simple question so I hope a lot of people can answer it :) I have created a testng.xml and put details about my test class to run, if I run this from maven all is working fine, but I can't get it to run using an IntelliJ as it complains about the missing

Re: formState="NONE" is it safe to use with persistent properties ?

2015-01-30 Thread Thiago H de Paula Figueiredo
Sorry, I hit the Send key by mistake . . . On Fri, 30 Jan 2015 10:20:30 -0200, nhhockeyplayer nashua wrote: Folks, I got a Home Page with a Gallery component sitting on top. I am operating three loops 1. loop to render pagination links This one should have formState="NONE", as there's

RE: formState="NONE" is it safe to use with persistent properties ?

2015-01-30 Thread nhhockeyplayer nashua
I goto home page I select itemsPerPage = 5 render it I have to select it twice to get it to work now i set it to 250 it wont stick unless I select it twice really not fun the formState is taking me out here I dont want to propagate my properties to Home.JAVA any ideas ? Thanks for your as

formState="NONE" is it safe to use with persistent properties ?

2015-01-30 Thread nhhockeyplayer nashua
Folks, I got a Home Page with a Gallery component sitting on top. I am operating three loops 1. loop to render pagination links 2. nested loop to render collection looping columns and rows If I remove formState="NONE" the app slows down to the point of barely usable. if I put the formState bac