From 7deea1aead01beabde1218379b72dd20f64f93ce Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Sun, 11 Feb 2007 20:22:45 +0000 Subject: r21285: - Add the new ResizeTableColumnModel and make use of it in TreeVirtual. This allows the Ldb Browser tree to properly size itself upon initially appearing and upon window resizes. There are still a few problems with it that I need to resolve, including an occasional set of double scrollbars, and making it resize the tree column when the splitter is resized. (This used to be commit c3c93ad36a9e850865aa8b09e319a77441243b01) --- webapps/swat/source/class/swat/module/ldbbrowse/Gui.js | 6 ------ 1 file changed, 6 deletions(-) (limited to 'webapps/swat/source/class') diff --git a/webapps/swat/source/class/swat/module/ldbbrowse/Gui.js b/webapps/swat/source/class/swat/module/ldbbrowse/Gui.js index 884b0fb154..f9e4bf7783 100644 --- a/webapps/swat/source/class/swat/module/ldbbrowse/Gui.js +++ b/webapps/swat/source/class/swat/module/ldbbrowse/Gui.js @@ -339,12 +339,6 @@ qx.Proto._buildPageBrowse = function(module, page) // We've only got one column, so we don't need cell focus indication. tree.setCellFocusAttributes({ backgroundColor : "transparent" }); - // This needs to become automatic! - tree.setColumnWidth(0, 200); - - // We only have one column. We don't need the column visibility button - tree.setColumnVisibilityButtonVisible(false); - // Get the data model var dataModel = tree.getDataModel(); -- cgit