Files
luos/workflow/engine/xmlform/roles/roles_Edit.xml
2011-09-05 12:47:25 -04:00

39 lines
965 B
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>Edit role</en>
</title>
<ROL_UID type="hidden"/>
<ROL_CODE type="text" size="25" maxlength="32" defaultvalue="" required="1">
<en>Role Code</en>
</ROL_CODE>
<ROL_NAME type="text" size="35" maxlength="128" defaultvalue="" required="1">
<en>Role Name</en>
</ROL_NAME>
<ROL_STATUS type="dropdown" size="25" maxlength="32" defaultvalue="Active">
<en>Status<option name="1">Active</option><option name="0">Inactive</option></en>
</ROL_STATUS>
<BTN_CANCEL type="button" onclick="cancel()">
<en>Cancel</en>
</BTN_CANCEL>
<CREATE type="button" onclick="javascript:updateRole(&#039;@#ROL_UID&#039;);">
<en>Update</en>
</CREATE>
<JS type="javascript" replacetags="1"><![CDATA[
function cancel(){
currentPopupWindow.remove();
}
]]></JS>
</dynaForm>