Files
luos/workflow/engine/xmlform/cases/cases_ViewOutputDocumentToRevise.xml
Marco Antonio Nina 1c3634ce75 BUG 8835 In all browsers to choose an output only. Doc or. Pdf Displa... SOLVED
- It was verified that no distinction was being the type of file that was downloaded.
- Added code to identify the Tido powerful file so just download and display the correct download link.
2012-04-05 15:59:49 -04:00

45 lines
989 B
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<dynaForm name="cases_ViewOutputDocumentToRevise" type="xmlform" width="400px" labelWidth="100px">
<OUT_DOC_TITLE type="caption">
<en>Output document</en>
</OUT_DOC_TITLE>
<OUT_DOC_DESCRIPTION type="caption">
<en>Description</en>
</OUT_DOC_DESCRIPTION>
<APP_DOC_CREATE_DATE type="caption">
<en>Create Date</en>
</APP_DOC_CREATE_DATE>
<VIEW type="phpVariable"/>
<FILE1 type="phpVariable"/>
<FILE2 type="phpVariable"/>
<APP_DOC_FILENAME1 type="link" value="@#VIEW" link="@#FILE1" target="_blank">
<en>File (.doc)</en>
</APP_DOC_FILENAME1>
<APP_DOC_FILENAME2 type="link" value="@#VIEW" link="@#FILE2" target="_blank">
<en>File (.pdf)</en>
</APP_DOC_FILENAME2>
<BACK type="button" onclick="history.go(-1);return false;">
<en>Back</en>
</BACK>
<JS type="javascript"><![CDATA[
if (@@FILE1 == '')
{
hideRowById('APP_DOC_FILENAME1');
}
if (@@FILE2 == '')
{
hideRowById('APP_DOC_FILENAME2');
}
]]></JS>
</dynaForm>