Please can anyone advise me. I have a custom schema with an element
form_purpose - I want to be able to create a form based on my custom
schema but add rich text to the form_purpose value such as hyperlinks.
When I generate up the form from my schema there is no option to
convert the standard text box to a rich text box. I would appreciate
any advice.
Regards
Redge
S.Y.M. Wong-A-Ton - 02 Feb 2006 15:27 GMT
For the element to be recognized as a rich text field, it has to have the
following structure:
<xsd:element name="form_purpose">
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any minOccurs="0" maxOccurs="unbounded"
namespace="http://www.w3.org/1999/xhtml" processContents="lax"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
---
S.Y.M. Wong-A-Ton
> Please can anyone advise me. I have a custom schema with an element
> form_purpose - I want to be able to create a form based on my custom
[quoted text clipped - 4 lines]
> Regards
> Redge
redog6@hotmail.com - 06 Feb 2006 12:36 GMT