Files
luos/workflow/engine/xmlform/roles/roles_Edit.xml
2014-04-21 10:21:03 -04:00

30 lines
1.1 KiB
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<dynaForm name="languages_ImportForm" type="xmlform" width="100%" labelWidth="40%" enableTemplate="1">
<title type="title" colWidth="200" showInTable="0">
<en><![CDATA[Edit role]]></en>
</title>
<ROL_UID type="hidden"/>
<ROL_CODE type="text" size="25" maxlength="32" defaultvalue="" required="1">
<en><![CDATA[Role Code]]></en>
</ROL_CODE>
<ROL_NAME type="text" size="35" maxlength="128" defaultvalue="" required="1">
<en><![CDATA[Role Name]]></en>
</ROL_NAME>
<ROL_STATUS type="dropdown" size="25" maxlength="32" defaultvalue="Active">
<en><![CDATA[Status]]><option name="1"><![CDATA[Active]]></option><option name="0"><![CDATA[Inactive]]></option></en>
</ROL_STATUS>
<BTN_CANCEL type="button" onclick="cancel()">
<en><![CDATA[Cancel]]></en>
</BTN_CANCEL>
<CREATE type="button" onclick="javascript:updateRole('@#ROL_UID');">
<en><![CDATA[Update]]></en>
</CREATE>
<JS type="javascript" replacetags="1"><![CDATA[
function cancel(){
currentPopupWindow.remove();
}
]]></JS>
</dynaForm>