Re: GWT DataGrid Widget unpredictable row height issue...

2012-04-11 Thread Andrei
Assign your table a css class - for example, .cellTable. Then add this to your css file: .cellTable tr { height: 24px !important; } (or whatever height you need) On another note, I am not sure why you need to add data to a table and then hide it - I can't think of any use case. The data is

Re: GWT DataGrid Widget unpredictable row height issue...

2012-04-10 Thread Sachin Shekhar R
Probably you can fix it by adding css property white-space: nowrap; .dataGridFooter, .dataGridHeader:hover,.dataGridCell by using custom grid css file with GWT default grid css. On Thursday, 8 March 2012 01:13:49 UTC+5:30, Bill M wrote: Hi Vinayak, I think I found the problem. I have a

Re: GWT DataGrid Widget unpredictable row height issue...

2012-03-07 Thread Bill M
Hi Vinayak, I think I found the problem. I have a column whose contents I want to hide from the user. However, I need the data available. So, from another post I came across, someone said the way to hide a column is to set it's column width to 0. However, it really seems I'm getting some

Re: GWT DataGrid Widget unpredictable row height issue...

2012-03-02 Thread vinayak kulkarni
Hello, I am using the datagrid but didnt face any issue related to larger row size. It only occurs during data wrapping if text size is more. In your case, some data might have been overflown with space character to the next line which may be showing larger size On Feb 27, 11:55 pm, Bill M

Re: GWT DataGrid Widget unpredictable row height issue...

2012-03-02 Thread Bill M
Hi Vinayak, I tried setting using the same data for each row, yet I still got some rows appearing with larger heights. And each row was loaded with the same exact data. I'm try loading with field/column of the row with and see what that does. Thanks, Bill M. On Mar 2, 5:14 am, vinayak

GWT DataGrid Widget unpredictable row height issue...

2012-02-27 Thread Bill M
Hi all, I'm loading the new DataGrid Widget with the results of a SQL query. I have noticed that some rows (just a few) are appearing with a larger row height than others, on a load of about 1000 rows. I tried setting each column of the row to a fixed value (not using the results of the query),