Re: Mixng cant find zone parameter

2013-02-24 Thread Ivan Khalopik
1) It seems that you use something like this ... ... public String getZoneFilterPropertyId() { return zone.getClientId(); } It makes a recursion in zoneId retrieval. You just need to remove id parameter from zone. ... On Mon, Feb 25, 2013 at 1:39 AM, bhorvat wrote: > Hi sody, > > T

Re: space maintainer in between

2013-02-24 Thread Taha Siddiqi
Hi If I understand it correctly, I don't see it as a tapestry problem. I would use   or a css :first-child.. regards Taha On Feb 25, 2013, at 10:15 AM, Ken in Nashua wrote: > Hi, > > I am seekign a tapestry solution to this. > > I am using > > > blah > blah > blah > > > and I get this

grid data column overrides/instrumentation

2013-02-24 Thread Ken in Nashua
Hi Folks, I have a list of images... but I want one displayed at a time for 5 seconds... then the next... then the next... kinda like a auto rotating carousel... no touch needed... one image at a time? Does anyone have a widget like this ? Thanks Ken

space maintainer in between

2013-02-24 Thread Ken in Nashua
Hi, I am seekign a tapestry solution to this. I am using blah blah blah and I get this in my div -- blah blah blah -- Is there a w

how to adjust row height of tapestry grid component

2013-02-24 Thread Ken in Nashua
Hi, Does anyone know how to adjust row height of tapestry grid component ? I searched and not finding anything on this. I have such a usage... ... I am currently listing a bunch of images but they vary in height and it looks very out of contro

Tapestry Tree (jquery)

2013-02-24 Thread bhorvat
Any idea how I can trigger an event when someone expends a node on the tree? Can I create mixin for this and if so what can I use it to 'override'? I have looked at the component description but I couldnt find anything to help me with this? I would like to refresh some data due to hibernate lazy

Re: Mixng cant find zone parameter

2013-02-24 Thread bhorvat
Hi sody, Thanks for your info. I have managed to get to the same conclusion but you have explained a few problems that I was having :) 1) I found some old mail treads so I managed to figure this part on my own. However I prefer your solution but for some reason it isnt really working. For some re

RE: how to render a TML page as-is

2013-02-24 Thread Ken in Nashua
Thanks Ivan, I got output now... I went with the component block strategy. I thought I was operating a page... and the java file was still in the components directrory... thats why no output previously. Looks terrific Appreciate the help - cheers Ken

RE: how to render a TML page as-is

2013-02-24 Thread Ken in Nashua
Thanks,... I tried But I am receiving no output. Blank display inside the tab ?

Re: how to render a TML page as-is

2013-02-24 Thread Ivan Khalopik
Use components, e.g. splash.tml + Spash.java. So you will have something like: But the tapestry-way is to create custom component for tab control with informal block parameters for tab contents: CONTENT CONTENT Or you can use some internal component model as paramete

how to render a TML page as-is

2013-02-24 Thread Ken in Nashua
Folks, I am using a tab control. Some of my logic I isolate to a separate TML And I ant to render is isolated as such. Here is my tab construct... psuedo Are there constructs in tapestry that will enable me to render my TML file inside the div ? I have a page

Re: [t5.3.6] Constructing Forms from Maps

2013-02-24 Thread Lance Java
FYI I've updated the tapestry-stitch-demo to validate the generic field. Some interesting files: https://github.com/uklance/tapestry-stitch/blob/master/src/main/java/org/lazan/t5/stitch/field/FieldSnapshot.java https://github.com/uklance/tapestry-stitch-demo/blob/master/src/main/resources/org/laza

Re: button tag

2013-02-24 Thread Bob Harner
You could just use a regular pagelink, actionlink or event link and style it (with CSS) to look like a button. If you really want to use a element, you can. But you'll have to decide out how to get the Tapestry-generated URL to the browser, with a JavaScript click event handler. Maybe get the lin

Re: button tag

2013-02-24 Thread based2
http://www.w3schools.com/tags/tag_input.asp elements are used within a element to declare input controls that allow users to input data. == http://tapestry.apache.org/current/apidocs/org/apache/tapestry5/corelib/components/Submit.html http://tapestry.apache.org/current/apidocs/org/apache/tape

Re: button tag

2013-02-24 Thread John
I envisage something like this: Click Me!