J
Janie
I'm trying to get a rich text box to display the contents of another rich
text box as its default value. This is easily done through the properties of
the box. The problem is that the data come through unformatted (as a single
line of text).
Expression boxes do this as well (display rich text as unformatted), but I
found a solution where you replace the following in the view xsl file for
that expression box:
<xsl: value-of select="my:field1"/>
with
<xsl: copy-of select="my:field1/node()"/>
Any simple solutions like this for my problem?
text box as its default value. This is easily done through the properties of
the box. The problem is that the data come through unformatted (as a single
line of text).
Expression boxes do this as well (display rich text as unformatted), but I
found a solution where you replace the following in the view xsl file for
that expression box:
<xsl: value-of select="my:field1"/>
with
<xsl: copy-of select="my:field1/node()"/>
Any simple solutions like this for my problem?