summaryrefslogtreecommitdiff
path: root/webapps
diff options
context:
space:
mode:
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)