Spaces:
Sleeping
Sleeping
File size: 1,316 Bytes
07c3cdd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | <?xml version="1.0" encoding="UTF-8"?>
<dynaForm name="processes_New" width="500px" labelWidth="115px" mode="edit" enableTemplate="0">
<menuUser type="xmlmenu" xmlfile="processes/processes_NewOptions">
<en/>
</menuUser>
<TITLE1 type="title" group="1">
<en><![CDATA[Process Information]]></en>
</TITLE1>
<PRO_TITLE type="text" size="50" maxlength="255" defaultvalue="" required="1" group="1" dependentfields="" linkfield="" strto="" readonly="0" noshowingrid="0" readonlyingrid="0" totalizeable="0" sqlconnection="">
<en><![CDATA[Title]]></en>
</PRO_TITLE>
<PRO_DESCRIPTION type="textarea" rows="7" cols="60">
<en><![CDATA[Description]]></en>
</PRO_DESCRIPTION>
<PRO_TEMPLATE type="radiogroup" sqlconnection="dbarray">
SELECT * from ProcessesNew
<en><![CDATA[Template]]></en>
</PRO_TEMPLATE>
<SUBMIT type="button" onclick="verifyProcessInformation(this.form);" group="1">
<en><![CDATA[Save]]></en>
</SUBMIT>
<MESSAGE1 type="phpvariable"/>
<JS type="javascript" replacetags="1"><![CDATA[
var verifyProcessInformation = function(oForm)
{
var oAux;
var bContinue = true;
oAux = oForm.elements['form[PRO_TITLE]'];
if (oAux.value == '')
{
alert("@#MESSAGE1");
oAux.focus();
bContinue = false;
}
if (bContinue)
{
oForm.submit();
}
};
]]></JS>
</dynaForm>
|