Re: NoSuchElementException

2015-01-26 Thread George Christman
So I ended up figuring out the issue. My loop was nested within a zone, when the loop was loaded. !request.xhr was blocking a query causing the result size to differ between load and submit. On submit I was submitting values that the onPrepare method wasn't aware of. On Sun, Jan 25, 2015 at 6:18

Re: Checkbox value for zone update

2015-01-26 Thread Lance Java
I'm guessing you have a javascript error on your page. Are you using jquery or prototype? tapestry-stitch only works for prototype. You'll need to tweak observe. js to get it to work with jquery (eg observe() changed to on() etc) On 26 Jan 2015 09:17, "Stephan Windmüller" < stephan.windmuel...@tu-

Re: Redirecting to a Page with context

2015-01-26 Thread akshay
Hi Thiago, Thanks for your response. I already solved the issue using PageRenderLinkSource. Regards Akshay On Mon, Jan 26, 2015 at 1:26 PM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Sat, 24 Jan 2015 13:10:10 -0200, akshay > wrote: > > Hi, >> > > Hi! > > Can anyone pleas

tapestry-bootstrap: Zone is rendered differently on "show"

2015-01-26 Thread Stephan Windmüller
Hello, I am using tapestry-bootstrap with a BeanEditForm. For a select field which should only be displayed after a special event, I added this code: Value As defined in the zone, it should not be visible i

Re: Render queue error in SetupRender

2015-01-26 Thread Thiago H de Paula Figueiredo
On Sun, 25 Jan 2015 06:33:19 -0200, Cheng Zhang wrote: Hi All, Hi! public class Person { @Inject public Person(){ this.name = "defaultname"; } @Inject public Person(String name){ this.name = name; } These @Inject annotations should be removed fro

Re: Redirecting to a Page with context

2015-01-26 Thread Thiago H de Paula Figueiredo
On Sat, 24 Jan 2015 13:10:10 -0200, akshay wrote: Hi, Hi! Can anyone please suggest me a way of redirecting/rendering a page with context from my current page. I'm sorry, I'm not following you. Redirecting and rendering a page are completely different actions with completely different

Re: Checkbox value for zone update

2015-01-26 Thread Stephan Windmüller
On 23.01.2015, schrieb Lance Java wrote: > You could use the observe mixin from tapestry stitch. The mixin can fire a > zone update based on the change event, the current checkbox value can be > sent as the event context. Hey Lance, your project sounds very promising, thanks for the hint. But ar

Re: Checkbox value for zone update

2015-01-26 Thread Stephan Windmüller
On 23.01.2015, Chris Poulsen wrote: > We have a "submittingcheckbox" component for this kind of thing. Basically > the component renders a checkbox and a hidden submit. Thanks for the suggestion, but using a separate submit field sounds a bit complex for such a simple task. I refuse to believe th