Re: Redirecting to a Page with context

2015-01-24 Thread Geoff Callender
This will probably help: T5.4: http://jumpstart.doublenegative.com.au/jumpstart7/examples/navigation/returntypes1 T5.3: http://jumpstart.doublenegative.com.au/jumpstart/examples/navigation/returntypes1 Cheers, Geoff On 25 Jan 2015, at 4:43 am, Chris Poulsen wrote: > return t

Re: NoSuchElementException

2015-01-24 Thread Geoff Callender
Can you paste the source of FacetFilter.tml, and identify line 16, too? On 25 Jan 2015, at 5:24 am, George Christman wrote: > Hi guys, I've been seeing this exception a lot lately and I can't seem > to track it down, I'm wondering if anybody has see anything like this > before and might be able

Fwd: NoSuchElementException

2015-01-24 Thread George Christman
Hi guys, I've been seeing this exception a lot lately and I can't seem to track it down, I'm wondering if anybody has see anything like this before and might be able to lend a helping hand to understand it. Thanks at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

Re: Redirecting to a Page with context

2015-01-24 Thread Chris Poulsen
return the link from the handler and tapestry will redirect/render it On Sat, Jan 24, 2015 at 5:05 PM, akshay wrote: > Hi Chris, > > Well I have already tried using PageRenderLinkSource for getting the > link"project/details/10871". > Once I get the link I transfrom it to absolute URI and then

Re: Redirecting to a Page with context

2015-01-24 Thread akshay
Hi Chris, Well I have already tried using PageRenderLinkSource for getting the link"project/details/10871". Once I get the link I transfrom it to absolute URI and then java.net.URL to render the specific page( which is not tapestry way). The PageRenderLinkSource gives you the link, but we need

Re: Redirecting to a Page with context

2015-01-24 Thread Chris Poulsen
PageRenderLinkSource or @InjectPage / set fields / return page / rely on onPassivate On Sat, Jan 24, 2015 at 4:10 PM, akshay wrote: > Hi, > > Can anyone please suggest me a way of redirecting/rendering a page with > context from my current page. > > This what I have been doing:- > > @Inject >

Re: Checkbox value for zone update

2015-01-24 Thread Stephan Windmüller
On 23.01.2015, Thiago H de Paula Figueiredo wrote: > You access the value of the checkbox (or any other Tapestry form field > component) by accessing the property it's editing. It the case above, > the ignoreLengthSelected property. This does not work with the zone update, the value is always fal

Redirecting to a Page with context

2015-01-24 Thread akshay
Hi, Can anyone please suggest me a way of redirecting/rendering a page with context from my current page. This what I have been doing:- @Inject private ComponentSource componentSource; Object onActivate(){ return componentResources.getPage(getPageName()); //This works fine till the time I

Re: fails now in 5.4

2015-01-24 Thread Chris Poulsen
I think my first suggestion would have worked if you had actually wrapped the select in a t:zone and not a tag and removed the argument from the handler... as i wrote there is no need to work with hidden submits etc. it works right out of the box, with dead simple code. On Sat, Jan 24, 2015 at 1:

RE: fails now in 5.4

2015-01-24 Thread nhhockeyplayer nashua
Thanks Geoff, I finally got a breakpoint using zones. Cant say too much for the OnEvent annotations anymore. My code lived before inducing a javascript submit without submit button but to make this fly I had to add the invisible submit button just like your filterSubmit and emulate a click() on