Grid-class puts a whitespace in every empty TD cell, how to remove them?

2010-05-24 Thread outsource lucas
Can't get my table cells to small size because of the whitespace that GWT puts in every empty TD cell of the table. This limits the table cells to a minimum size of 6x18, because of the font (can get smaller if I set the font smaller, but will always remain limited to the font). How to remove

Re: Grid-class puts a whitespace in every empty TD cell, how to remove them?

2010-05-24 Thread outsource lucas
GWT fills TDs like this by default: TDnbsp;TD/ I found this solution now to remove the whitespace(nbsp;), its a simple function: - grid.clear(true); which does something like this: - DOM.setInnerHTML(grid.getCellFormatter().getElement(row, column), ); for every row column (which you can also