Re: Specifying cell width in cellTable

2011-07-01 Thread Andrei Volgin
If all cells are the same width, give this table a style name, and add a CSS rule for cell width: .myTabe td { width: 100px !important; } I use this approach to set the height of rows in CellTable, where empty rows have a different height from the ones with data. Andrei On Jun 30, 9:20 

Specifying cell width in cellTable

2011-06-30 Thread Issam
I'm working with CellTable and Inuptcells and I would like to specify the width of each instance on my inputCell. Anyone has an idea? Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

R: Specifying cell width in cellTable

2011-06-30 Thread icamts
Hi, for columns width have a look at http://code.google.com/intl/it-IT/webtoolkit/doc/latest/DevGuideUiCellTable.html#columnWidths For each input width you may need to provide your own version of the Inputcell: customize render method. Cheers, Luca -- You received this message because you

Re: R: Specifying cell width in cellTable

2011-06-30 Thread Issam
Thank you for your answer But the problem is that I'm working by GWT 2.1 and I can't use the method cellTable.setColumnWidth(column, width, unit) So any help ? On 30 juin, 15:42, icamts ica...@gmail.com wrote: Hi, for columns width have a look at

Re: R: Specifying cell width in cellTable

2011-06-30 Thread Luca
It seems GWT 2.3 CellTable creates this DOM structure ... thead ... /thead colgroup col width=... ... /colgroup tbody ... /tbody ... and sets width in each col element... Try to do the same in your view code. (GwtQuery may be useful.) Cheers, Luca 2011/6/30 Issam