I have a this code for the layout :
grid = new Grid(15, 15);
tiles = new Tile[15][15];
for (int i = 0; i != 15; i++)
{
for (int j = 0; j != 15; j++)
{
tiles[i][j] = new Tile('a');
grid.setWidget(i, j, tiles[i][j]);
tiles[i][j].setVisible(true);
}
}
initWidget(grid);
I know it is working, because if I change the Tile, by a Button, it
works well.
Now my Tile class :
public class Tile extends Composite {
char character;
public Tile (Character c)
{
this.character = c;
buildWidget();
}
private void buildWidget()
{
Label l = new Label(this.character+"");
initWidget(l);
}
Why does all tiles are not displayed ?
Thanks for your help !
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.