diff options
author | Derrell Lipman <derrell@samba.org> | 2007-02-11 20:22:45 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:44:59 -0500 |
commit | 7deea1aead01beabde1218379b72dd20f64f93ce (patch) | |
tree | e23a057f604558f7a6c9d4267bbf39ef7cf9f8ea /webapps/swat | |
parent | 9bdb49455aa6ad38f71375f602e691d2b7765d04 (diff) | |
download | samba-7deea1aead01beabde1218379b72dd20f64f93ce.tar.gz samba-7deea1aead01beabde1218379b72dd20f64f93ce.tar.bz2 samba-7deea1aead01beabde1218379b72dd20f64f93ce.zip |
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)
Diffstat (limited to 'webapps/swat')
-rw-r--r-- | webapps/swat/source/class/swat/module/ldbbrowse/Gui.js | 6 |
1 files changed, 0 insertions, 6 deletions
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(); |