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 lists (th

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 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
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