Hello,
I am using Sharepoint 2010 and came across another oddity when using a custom Display form. I have a people picker column that allows for multiple values. If I assigned more than one name, the default Display form will list the names in a semi-colon delimited line (all names appear ont he same line). If I use my Custom Display form, however, each name appears on its own line. Before I ran accross this issue, I noticed that my people picker fields on my custom Display form would display HTML rather than the value and found that I had to disable the escape charaters so that the XSL looks like:
<xsl:value-of select="@MultUser" disable-output-escaping="yes"/>
Now I have the issue of the names appearing on multiple lines. Is there something else I can declare int he XSL that will put all the names on the same line?
Thanks - Peter