Re: how to adjust row height of tapestry grid component

2013-02-25 Thread Ivan Khalopik
You just need to override css for t-beaneditor-row. Global solution: .t-beaneditor-row { height: 200px; } More flexible solution: css: .my-own-cool-css-class .t-beaneditor-row { height: 200px; } On Mon, Feb 25, 2013 at 7:33 AM, Ken in Nashua wrote: > Hi, > > Does anyone know how

RE: how to adjust row height of tapestry grid component

2013-02-25 Thread Ken in Nashua
Thanks Ivan... But does your solution actually work for t-grid ? that was the component I was referring to...sorry about the source ken

Re: how to adjust row height of tapestry grid component

2013-02-25 Thread Ivan Khalopik
It works everywhere. Global solution: .t-data-grid tr { height: 200px; } Flexible solution: ... css: .my-own-cool-css-class tr { height: 200px; } On Mon, Feb 25, 2013 at 11:28 AM, Ken in Nashua wrote: > Thanks Ivan... > > But does your solution actually work for t-grid ? > > that wa

Re: grid data column overrides/instrumentation

2013-02-25 Thread Shing Hing Man
 One quick way (probably not the best) is to use mixin ZoneRefresh http://tapestry.apache.org/component-reference.html Below is an example: http://lombok.demon.co.uk/tapestry5Demo/test/core/mixin/zonerefreshdemoone Shing - Original Message - From: Ken in Nashua To: "users@tap

Re: grid data column overrides/instrumentation

2013-02-25 Thread Taha Siddiqi
Hi I am sure you can find a few implementations if you will google around. Here is one. https://github.com/got5/tapestry5-jquery/blob/master/src/main/java/org/got5/tapestry5/jquery/components/Carousel.java regards Taha On Feb 25, 2013, at 10:30 AM, Ken in Nashua wrote: > Hi Folks, > > I have

Re: Tapestry Tree (jquery)

2013-02-25 Thread Lance Java
There's a pretty complex, database backed tree example in jumpstart http://jumpstart.doublenegative.com.au/jumpstart/examples/ajax/treefromdatabasewithzones -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Tree-jquery-tp5720196p5720207.html Sent from the Tapestry

Re: how to adjust row height of tapestry grid component

2013-02-25 Thread Geoff Callender
A styled grid: http://jumpstart.doublenegative.com.au/jumpstart/examples/tables/styledgrid Compare the css and I think the answer will jump out at you. On 25/02/2013, at 11:05 PM, Ken in Nashua wrote: > Folks, > > Having trouble applying those css rules. > > At end of this message is

RE: how to adjust row height of tapestry grid component

2013-02-25 Thread Ken in Nashua
ok... this one looks like it... it opened up my the way I am seeking table.t-data-grid tbody tr ph !

Putting the context first in the URL path

2013-02-25 Thread jellevangompel
Hi all, I wanna know if it is possible to put the context of a page first in the path of a URL. I am currently implementing a wizard built with separate pages that all need to be initialised with a context. This will result in URLs like: www.myapp.com/stepone/contextA www.myapp.com/steptwo/c

Re: Putting the context first in the URL path

2013-02-25 Thread Taha Siddiqi
Hi You can do it using Tapestry's URL Rewriting APIs http://blog.tapestry5.de/index.php/2010/09/06/new-url-rewriting-api/ http://tapestry.apache.org/url-rewriting.html regards Taha On Feb 25, 2013, at 6:29 PM, jellevangompel wrote: > Hi all, > > I wanna know if it is possible to put the cont

Re: Tapestry Tree (jquery)

2013-02-25 Thread Nicolas Barrera
Hi, reading the api docs it seems that the only triggered events are NODE_SELECTED and NODE_UNSELECTED anyway looking into the code..., the Tree component seems to have an ExpandChildren event which perhaps is bubbled up and you can do something there..., ( I 'm not pretty sure of this ) ( http

RE: how to adjust row height of tapestry grid component

2013-02-25 Thread nquirynen
This is not really a Tapestry problem but a CSS issue.. If you don't know what CSS classes are applied to some element in your html, use something like FireBug, or Chrome to inspect this. You can see what CSS rules are applied and what is overridden. Then you can easily override these rules if nee

Re: how to adjust row height of tapestry grid component

2013-02-25 Thread Thiago H de Paula Figueiredo
On Mon, 25 Feb 2013 01:33:51 -0300, Ken in Nashua wrote: Hi, Hi! Does anyone know how to adjust row height of tapestry grid component ? Exactly the very same way you'd do with any HTML table: using CSS. This question is completely off-topic. From your posts in this mailing lists (th

Re: space maintainer in between

2013-02-25 Thread Thiago H de Paula Figueiredo
On Mon, 25 Feb 2013 01:45:09 -0300, Ken in Nashua wrote: Hi, 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 ---

Re: Mixng cant find zone parameter

2013-02-25 Thread bhorvat
Nope removing normal id breaks the ajax. Here is how my code looks like public String getZoneFilterTypeId() { return zoneFilterType.getClientId();// return "z

Re: Tapestry Tree (jquery)

2013-02-25 Thread bhorvat
The way I see it jumpstart is using the normal tree component from tapestry and even though that one has the event that I need it does not bubble up so I can handle it :( any way to include a mixin that will change the way component is handling the original event? -- View this message in contex

Re: Tapestry Tree (jquery)

2013-02-25 Thread bhorvat
Hi Nicolas, Yea I see that event but sadly it isn't propagated to me. I am not sure if it is possible to change this behaviour using mixin? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Tree-jquery-tp5720196p5720221.html Sent from the Tapestry - User mailing l

html5 - input (and other void elements)

2013-02-25 Thread Tony Nelson
I am generating html5 with Tapestry 5.3.6. Today I ran a simple form through a w3 validator. The validator complained that my input tag had a "stray end tag". You can see the entire page here: http://goo.gl/GnVlr After reading more about html5 than I had intended, I discovered that there ar

Re: html5 - input (and other void elements)

2013-02-25 Thread rnicholus
https://issues.apache.org/jira/browse/TAP5-2071 -- View this message in context: http://tapestry.1045711.n5.nabble.com/html5-input-and-other-void-elements-tp5720222p5720223.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: html5 - input (and other void elements)

2013-02-25 Thread Bob Harner
At first I thought that maybe Dom Manipuation could be used as a work-around to fix the output. But no, rendering to markup occurs *after* Dom manipulation. So I don't think there is a way to do what you're looking for at the current time, although I'll be happy to have somebody correct me. On Mo

Re: 3 days of ValueEncoder-ing, no coercion found

2013-02-25 Thread mvchris
Oh maan. what an idiot. That's a lesson in reading the stack trace carefully. Bad programmer. On looking back at the last message, line 31 just had a loop qmEvents.get(i).getClass.getCanonicalName(); funnily enough as you suspected, the class name was not a LibraryQueueMemberEvent. I