This content has been marked as final.
Show 2 replies
-
1. Re: Generate doc from rtf template
relaxatraja Jan 23, 2013 11:54 PM (in response to Phinehas1234)CFML:
<body>
<p><label>Back to top</label> <br />
<cfinput type="checkbox" name="Back" value="">
<label>Discipline</label> </p>
<cfinput type="checkbox" name="Discipline" value="">
</body>
Condition check on submit:
<cfif !isDefined('FORM.Back')>
<cfset back=0>
<cfelse>
<cfset back=1>
</cfif>
<cfif !isDefined('FORM.Discipline')>
<cfset discipline=0>
<cfelse>
<cfset discipline=1>
</cfif>
-
2. Re: Generate doc from rtf template
Phinehas1234 Jan 25, 2013 12:07 AM (in response to Phinehas1234)More problem,
Can rtf shows HTML?
We have a table cell and it is allowed to inputted the HTML tag. However, we found that it cannot show HTML correctly. For example, if the text contain "<u></u>", it shows "<u></u>", not underline the wordings.
Is there any methods on showing HTML input in rtf file?

