Reviewers: Dan Rice, Description: Improving performance of CellTable. CellTable called StringBuilder#length() before and after rendering each cell to determine if we need to add a blank space to force the cell to render, but length() does an array join on the underlying array in IE, killing performance. Instead, we now put a DIV between the TD and the cell contents, which forces the cell to render. This patch also optimizes some Cells.
Please review this at http://gwt-code-reviews.appspot.com/775802/show Affected files: M user/src/com/google/gwt/cell/client/ActionCell.java M user/src/com/google/gwt/cell/client/CheckboxCell.java M user/src/com/google/gwt/cell/client/TextInputCell.java M user/src/com/google/gwt/user/cellview/client/CellTable.java -- http://groups.google.com/group/Google-Web-Toolkit-Contributors
