Files
luos/workflow/engine/xmlform/processes/processes_FileEdit.xml
Victor Saisa Lopez d55f6b2a5d BUG 0000 "Problem in DESIGNER>Preview of Dynaforms" SOLVED
- Problem in DESIGNER>Preview of Dynaforms (WYSIWYG editor)
- Problem to edit/preview/edit-html in Templates (WYSIWYG editor)
- Solved problem, HTML code correct is obtained of editor WYSIWYG
* Available from version ProcessMaker-2.5
2013-04-11 17:15:27 -04:00

32 lines
898 B
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<dynaForm name="processes_FileEdit" type="xmlform" width="100%" enableTemplate="1">
<pro_uid type="hidden" defaultValue=""/>
<filename type="hidden" defaultValue=""/>
<TITLE type="title" enableHTML="1">
<en><![CDATA[<div align="center">Edit @#filename email template</div>]]></en>
</TITLE>
<fcontent type="wysiwyg_editor" editorType="EMAIL_TEMPLATE" height="380" width="720" defaultValue="">
<en/>
</fcontent>
<ACCEPT type="button" onclick="getField('fcontent').value = tinyMCE.activeEditor.getContent(); saveFile(@@pro_uid, @@filename);">
<en>Save</en>
</ACCEPT>
<BTN_CANCEL type="button" onclick="cancel();">
<en>Cancel</en>
</BTN_CANCEL>
<JS type="javascript" replacetags="1"><![CDATA[
function cancel() {
tinyMCE.execCommand('mceRemoveControl',false,'form[fcontent]');
oPanel.remove();
}
]]></JS>
</dynaForm>