Re: GWT 2.4 CellTable issue

2011-10-01 Thread IonuČ› G. Stan
On Sep/30/2011 17:29, zip184 wrote: Downgrading to GWT 2.3 fixes the problem. I tried calling headerElement.setAttribute(style, display: none) instead of removing the element, but that doesn't look the same (it still keeps a few pixels there). I'm aware that creating a CellTable and then ripping

GWT 2.4 CellTable issue

2011-09-30 Thread zip184
Upgrading from GWT 2.3 to 2.4 caused a client-side exception in a class of mine that extends CellTable. There has been no loss of functionality, but the exception is a constant development annoyance. com.google.gwt.core.client.JavaScriptException: (TypeError): this.insertBefore is not a function

Re: GWT 2.4 CellTable issue

2011-09-30 Thread zip184
Here's a better example: Running this code works fine in GWT 2.3 but throws the exception in GWT 2.4 CellTableString table = new CellTableString(); table.addColumn(new TextColumnString() { @Override public String getValue(String object) { return object; }