google-code-export / tatami

Automatically exported from code.google.com/p/tatami
1 stars 1 forks source link

Don't see the rows on Grid #16

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

Try this code :

Grid grid = new Grid();
grid.addColumn("BirthDate", "date");
Object[] row1 = { new Date("03/25/1981") };
Object[] row2 = { new Date("11/12/1978") };
grid.addRow(row1);
grid.addRow(row2);

RootPanel.get().add(grid);

What is the expected output? What do you see instead?

Rows aren't visible. 

What version of the product are you using? On what operating system?

Tatami 1.3.1 / JDK 1.6.0_12 / Windows XP / IE6 SP1

Please provide any additional information below.

If I put a height ( grid.setHeight("200"); ) on the grid, the rows are 
visible.

Original issue reported on code.google.com by yop...@gmail.com on 19 Feb 2009 at 11:53

GoogleCodeExporter commented 9 years ago
Indeed, you  need to specify a height for the grid. We will try to fix this 
issue it
in the next release.

Original comment by vgrass...@gmail.com on 24 Feb 2009 at 5:34