From: Charles du Jeu Date: Thu, 17 Sep 2009 09:26:22 +0000 (+0000) Subject: Open user on dblClick X-Git-Tag: argeo-commons-2.1.30~1802 X-Git-Url: https://git.argeo.org/?p=lgpl%2Fargeo-commons.git;a=commitdiff_plain;h=f0037ce21f65a9ae5fb87cb706398a83f5b42880 Open user on dblClick git-svn-id: https://svn.argeo.org/commons/trunk@2943 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- diff --git a/security/runtime/org.argeo.security.ria/src/argeo-ria-lib/security/class/org/argeo/security/ria/UsersApplet.js b/security/runtime/org.argeo.security.ria/src/argeo-ria-lib/security/class/org/argeo/security/ria/UsersApplet.js index 5eb44f42e..f4765628f 100644 --- a/security/runtime/org.argeo.security.ria/src/argeo-ria-lib/security/class/org/argeo/security/ria/UsersApplet.js +++ b/security/runtime/org.argeo.security.ria/src/argeo-ria-lib/security/class/org/argeo/security/ria/UsersApplet.js @@ -123,6 +123,9 @@ qx.Class.define("org.argeo.security.ria.UsersApplet", this.table.getSelectionModel().addListener("changeSelection", function(){ this._selectionToValues(this.table.getSelectionModel(), this.getViewSelection()); }, this); + this.table.addListener("cellDblclick", function(cellEvent){ + this.getCommands()["edit_user"].command.execute(); + }, this); this.setGuiMode("chooser"); },