Re: Checkbox validation for accepting terms & conditions.

2014-04-13 Thread Balázs Palcsó
@AssertTrue JSR-303 annotation is what I need http://docs.jboss.org/hibernate/stable/beanvalidation/api/javax/validation/constraints/AssertTrue.html Just need to get it working with tapestry-beanvalidator. On 12 April 2014 15:40, Balázs Palcsó wrote: > Hi All, > > I need to implement a registra

Re: 5.4 Endless Scroll Component

2014-04-13 Thread George Christman
How do you think it will work with the back button? I'm assuming as soon as you navigate away from the page and return with the back button your going to lose your results? On Fri, Apr 11, 2014 at 4:14 AM, Lance Java wrote: > Perhaps Barry's solution could be applied to my pager component > http

Re: Why is my tap5.4beta3 Alerts Component rendering all alerts twice?

2014-04-13 Thread Jon Williams
Now I'm wondering if this is a bug somewhere in the pageinit javascript? Every time the Alerts component renders an individual alert, tapestry uses the javascript alert function (in alert.js) like so... 1) (from Alerts.java) javaScriptSupport.require("t5/core/alert").with(alert.toJSON()); I don'

Re: Passing null value into context

2014-04-13 Thread Lance Java
This can be done using EventContext as the serverside event's argument type. I assume using an empty list / array to represent your null case will achieve the desired result.

Passing null value into context

2014-04-13 Thread Boris Horvat
Hi everyone I have a code that generates page links based on the specified names in a list. That block of code looks like this ${pageName} ${pageNotNu

Re: JavaScript method for context encoding

2014-04-13 Thread Ilya Obshadko
I have a mixin that is very similar to yours. It's called ReloadZone, accepts pretty much the same set of parameters - zone, client-side event and context, and fires 'reloadzone' server-side event which actually updates related zone. But there is another problem (which I'm trying to handle right n