Merge pull request #2014 from gproly/master
BUG-12245 Adición de la función faltante que originaba el problema de despliegue de usuarios de grupo en las propiedades de una tarea. SOLVED
This commit is contained in:
14
workflow/engine/xmlform/users/users_ShortOptionsAdhoc.xml
Executable file → Normal file
14
workflow/engine/xmlform/users/users_ShortOptionsAdhoc.xml
Executable file → Normal file
@@ -70,5 +70,19 @@ var changeView = function(iType)
|
|||||||
Pm.tmp.usersPanel.currentRPC.make();
|
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;
|
||||||
|
};
|
||||||
|
|
||||||
]]></js>
|
]]></js>
|
||||||
</dynaForm>
|
</dynaForm>
|
||||||
Reference in New Issue
Block a user