Re: T5 : Dependant dropdown boxes

2009-07-12 Thread Geoff Callender
Please add your vote to https://issues.apache.org/jira/browse/TAP5-138 . Cheers, Geoff On 11/07/2009, at 5:48 AM, newtonik wrote: I am also about to try to implement it. Has anyone out there done this. If you have, please share tips and samples. Javascript in Tapestry is not as simple

Re: How to set a meta header tag in template?

2009-07-12 Thread Markus Joschko
In the same way you can also pass a block as a parameter that contains arbitrary html (meta tags). The block can be defined in the page and then be passed to the layout to render it where needed. Cheers, Markus On Sun, Jul 12, 2009 at 1:40 AM, nille hammertapestry.nilleham...@winfonet.eu wrote:

Chenillekit OnEvent error

2009-07-12 Thread sodium
I am trying out the OnEventDemo and keep getting this error: Error communication with the server: response.evalJSON is not a function I am using Tapestry 5.1.0.5 and Chenillekit 1.0.2. Anyone got any idea what could be wrong? -- View this message in context:

Re: T5.1 components inside loops not getting reset

2009-07-12 Thread Sergey Didenko
Hi Jack, the right way to use render methods is: void setupRender() { // initializer code a = 0; } void beginRender() { // mutator code a++; } See the Component Rendering. setupRender is for

Re: Chenillekit OnEvent error

2009-07-12 Thread sodium
Ok nevermind, i figure out it was the javascript side problem. evalJSON is not needed. sodium wrote: I am trying out the OnEventDemo and keep getting this error: Error communication with the server: response.evalJSON is not a function I am using Tapestry 5.1.0.5 and Chenillekit 1.0.2.

t5: layout pattern and search engine indexing

2009-07-12 Thread Angelo Chen
Hi, I use layout pattern to layout the pages, it works well, but I notice sometimes URLs like following got indexd in the search engine: www.example/index.mylayout.home?t:ac=12345678 any idea how to turn above into www.example/home?t:ac=12345678 Thanks, Angelo -- View this message in

Re: t5: layout pattern and search engine indexing

2009-07-12 Thread Thiago H. de Paula Figueiredo
Em Sun, 12 Jul 2009 23:54:42 -0300, Angelo Chen angelochen...@yahoo.com.hk escreveu: Hi, Hi! I use layout pattern to layout the pages, it works well, but I notice sometimes URLs like following got indexd in the search engine: www.example/index.mylayout.home?t:ac=12345678 any idea how to

Re: t5: layout pattern and search engine indexing

2009-07-12 Thread Angelo Chen
Hi Thiago, How to avoid event links? when you have a actionLink in the tml you will get that kind of links in the page, right? Thiago H. de Paula Figueiredo wrote: Em Sun, 12 Jul 2009 23:54:42 -0300, Angelo Chen angelochen...@yahoo.com.hk escreveu: Hi, Hi! I use layout pattern