xslt data view conversion causes display issues with alt/title text
I converted a webpart to xslt dataview in Sharepoint Designer so that I can add some conditional formatting. After the conversion, the alt/title text on the "Type" (e.g. the Word icon) graphic doesn't work correctly anymore. The code for the little green overlay arrow that indicates that a document is checked out shows:
<img src="/_layouts/images/checkoutoverlay.gif" class="ms-vb-icon-overlay" alt="{@FileLeafRef}
Checked Out To:{@CheckoutUser}" title="{@FileLeafRef} Checked Out To:{@CheckoutUser}" />
Same attributes are in the actual Word icon image tag.
When I mouse-over either of the two icons in the browser, the output for the tooltip looks like this:
testdoc.doc
Checked Out To:<nobr><span><A HREF="/_layouts/userdisp.aspx?ID=2">Testuser, Angela</A><img border="0" height="1" .......>.....</a></span></nobr>
Before the conversion, it looks like this:
testdoc.doc
Checked Out To: Testuser, Angela
How can I get the correct alt/title text formatting in XSLT dataview?

