Re: how to adjust row height of tapestry grid component

2013-02-26 Thread Thiago H de Paula Figueiredo
On Tue, 26 Feb 2013 18:01:47 -0300, Ken in Nashua wrote: I never really got it... until now... So I reiterate... Phww !!! private void doGridOverride(MarkupWriter writer) { writer.write(NEWLINE); Don't do this. All you need is CSS put in some .css file and included v

RE: how to adjust row height of tapestry grid component

2013-02-26 Thread Ken in Nashua
I never really got it... until now... So I reiterate... Phww !!! private void doGridOverride(MarkupWriter writer) { writer.write(NEWLINE); writer.write("\tTABLE.t-data-grid {"); writer.write(NEWLINE); writer.write("\t\ttable-layout: fixed;");

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

RE: how to adjust row height of tapestry grid component

2013-02-25 Thread nquirynen
es if needed by writing more specific rules in your own CSS files. -- View this message in context: http://tapestry.1045711.n5.nabble.com/how-to-adjust-row-height-of-tapestry-grid-component-tp5720197p5720216.html Sent from the Tapestry - User mailing list archive at Nabbl

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 !

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 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: 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
know how to adjust row height of tapestry grid component ? > > I searched and not finding anything on this. > > I have such a usage... > > > t:mixins="tynamo/BeanModelAdvisor"/> > > > > ... > > >

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