From 3b039201bf31d9daf1b6c915b3631eade2fa3522 Mon Sep 17 00:00:00 2001 From: roly Date: Thu, 29 Aug 2013 09:08:54 -0400 Subject: [PATCH] =?UTF-8?q?Adici=C3=B3n=20de=20la=20funci=C3=B3n=20faltant?= =?UTF-8?q?e=20que=20originaba=20el=20problema=20de=20despliegue=20de=20us?= =?UTF-8?q?uarios=20de=20grupo=20en=20las=20propiedades=20de=20una=20tarea?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../xmlform/users/users_ShortOptionsAdhoc.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) mode change 100755 => 100644 workflow/engine/xmlform/users/users_ShortOptionsAdhoc.xml diff --git a/workflow/engine/xmlform/users/users_ShortOptionsAdhoc.xml b/workflow/engine/xmlform/users/users_ShortOptionsAdhoc.xml old mode 100755 new mode 100644 index 46d98038a..628a88d70 --- a/workflow/engine/xmlform/users/users_ShortOptionsAdhoc.xml +++ b/workflow/engine/xmlform/users/users_ShortOptionsAdhoc.xml @@ -70,5 +70,19 @@ var changeView = function(iType) Pm.tmp.usersPanel.currentRPC.make(); }; +var usersGroup = function(GRP_UID, c){ + var div = document.getElementById('users'+c); + div.style.display = (div.style.display == 'none') ? 'block' : 'none'; + + var oRPC = new leimnud.module.rpc.xmlhttp({ + url : '../users/users_Ajax', + async : false, + method: 'POST', + args : 'function=usersGroup&GRP_UID=' + GRP_UID + }); + oRPC.make(); + div.innerHTML=oRPC.xmlhttp.responseText; +}; + ]]> \ No newline at end of file