summaryrefslogtreecommitdiff
path: root/webapps
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2007-02-15 18:48:37 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:48:21 -0500
commit17c82f1d12c230d60248306dea30bfa441b33962 (patch)
tree6e7fe0ff4c10bc405d04b06196e3d896d42ffc10 /webapps
parentcccd788ba7356fc2b35a61e512ae356e46c7a0a5 (diff)
downloadsamba-17c82f1d12c230d60248306dea30bfa441b33962.tar.gz
samba-17c82f1d12c230d60248306dea30bfa441b33962.tar.bz2
samba-17c82f1d12c230d60248306dea30bfa441b33962.zip
r21371: Ehmm I was reseting the wrong dataModel...
(This used to be commit 37484924bcf7a5a0cacafeefa060a56038000ef8)
Diffstat (limited to 'webapps')
-rw-r--r--webapps/swat/source/class/swat/module/ldbbrowse/Gui.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapps/swat/source/class/swat/module/ldbbrowse/Gui.js b/webapps/swat/source/class/swat/module/ldbbrowse/Gui.js
index 60bf1103bc..d341563164 100644
--- a/webapps/swat/source/class/swat/module/ldbbrowse/Gui.js
+++ b/webapps/swat/source/class/swat/module/ldbbrowse/Gui.js
@@ -527,8 +527,10 @@ qx.Proto._displayDeleteResults = function(module, rpcRequest, type)
alert("Object Successfully deleted!");
this._ldbmod.setBase("");
+
// just clear the attribute/value table.
- dataModel.setData([ ]);
+ var tableModel = module.fsm.getObject("tableModel:browse");
+ tableModel.setData([]);
};
qx.Proto._displaySearchResults = function(module, rpcRequest)