Files
luos/workflow/engine/xmlform/users/users_ShortOptionsAdhoc.xml

83 lines
2.6 KiB
XML
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<dynaForm type="xmlmenu">
2014-04-21 10:21:01 -04:00
<PROCESS type="private"/>
<TASK type="private"/>
<TYPE type="private"/>
<MNU_ASSIGN type="link" value="" link="#" onclick="popupWindow('Assign users group or user (Adhoc)', '../users/users_Ajax?function=availableUsers&amp;sProcess=@#PROCESS&amp;sTask=@#TASK&amp;iType=@#TYPE', 500, 420);return false;" colAlign="left" colWidth="100">
<en><![CDATA[Assign]]></en>
</MNU_ASSIGN>
<CONFIRM type="private"/>
<js type="javascript"><![CDATA[
2010-12-02 23:34:41 +00:00
var assignGroupOrUser = function(sTask, sUser, iType, iRelation) {
var oRPC = new leimnud.module.rpc.xmlhttp({
url : '../users/users_Ajax',
async : false,
method: 'POST',
args : 'function=assign&TAS_UID=' + sTask + '&USR_UID=' + sUser + '&TU_TYPE=' + iType + '&TU_RELATION=' + iRelation
});
oRPC.make();
currentPopupWindow.remove();
Pm.tmp.usersPanel.clearContent();
Pm.tmp.usersPanel.loader.show();
Pm.tmp.usersPanel.currentRPC.make();
};
var ofToAssignGroupOrUser = function(TAS_UID, USR_UID, TU_TYPE, TU_RELATION) {
// new leimnud.module.app.confirm().make({
// label:'@#CONFIRM',
// action:function() {
var oRPC = new leimnud.module.rpc.xmlhttp({
url : '../users/users_Ajax',
async : false,
method: 'POST',
args : 'function=ofToAssign&TAS_UID=' + TAS_UID + '&USR_UID=' + USR_UID + '&TU_TYPE=' + TU_TYPE + '&TU_RELATION=' + TU_RELATION
});
oRPC.make();
Pm.tmp.usersPanel.clearContent();
Pm.tmp.usersPanel.loader.show();
Pm.tmp.usersPanel.currentRPC.make();
// }.extend(this)
// });
return false;
};
function showHideFilterForm()
{
if (document.getElementById('users_ShortSearch').style.display==='none')
document.getElementById('users_ShortSearch').style.display = '';
else
document.getElementById('users_ShortSearch').style.display = 'none';
}
var changeView = function(iType)
{
var oRPC = new leimnud.module.rpc.xmlhttp({
url : '../users/users_Ajax',
async : false,
method: 'POST',
args : 'function=changeView&TU_TYPE=' + (iType == 1 ? '2' : '1')
});
oRPC.make();
Pm.tmp.usersPanel.clearContent();
Pm.tmp.usersPanel.loader.show();
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;
};
2010-12-02 23:34:41 +00:00
]]></js>
2014-04-21 10:21:01 -04:00
</dynaForm>