41 lines
1.0 KiB
XML
Executable File
41 lines
1.0 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
<dynaForm name="rbac" basedir="" width='400'>form
|
|
<DYNA_HEADER type='title' group='6'>
|
|
<es>Crear Aplicación Nueva</es>
|
|
<en>Create new Application</en>
|
|
<po>Crear Aplicación Nueva</po>
|
|
</DYNA_HEADER>
|
|
|
|
|
|
<APP_CODE type="text" size="25" maxlength="24" validate="Alpha10">
|
|
<es>Código de Aplicación:</es>
|
|
<en>Application Code:</en>
|
|
<po>Application Rol:</po>
|
|
</APP_CODE>
|
|
|
|
<APP_DESCRIPTION type="text" size="35" maxlength="120" validate="4" >
|
|
<es>Descripción:</es>
|
|
<en>Description:</en>
|
|
<po>Descripcion:</po>
|
|
</APP_DESCRIPTION>
|
|
|
|
|
|
<BSUBMIT type="button" onclick="btnClick(this.form)">
|
|
<es>Continuar</es>
|
|
<en>Continue</en>
|
|
<po>Continuar</po>
|
|
</BSUBMIT>
|
|
|
|
<JavaScript type="javascript">
|
|
|
|
function btnClick(form) {
|
|
var cod = form.elements['form[APP_CODE]'];
|
|
var des = form.elements['form[APP_DESCRIPTION]'];
|
|
if (cod.value == "") {cod.focus(); alert ( msgEmptyField ); return}
|
|
if (des.value == "") {des.focus(); alert ( msgEmptyField ); return}
|
|
|
|
form.submit();
|
|
};
|
|
|
|
</JavaScript>
|
|
</dynaForm> |