Link to home
Start Free TrialLog in
Avatar of erobles1963
erobles1963

asked on

Truncate the body of an Announcement in SharePoint 2007

All,
I would like to truncate the body of text in the standard Announcement List that comes out of the box.

So far I have yet to figure out a solution.  Any feedback is very much appreciated!
SOLUTION
Avatar of svetaye
svetaye
Flag of Israel image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of erobles1963
erobles1963

ASKER

Svetaye,

I've tried your recommendation but I'm not able to achieve the end results I'm looking for -- here is the actual code I am using:

<xsl:value-of disable-output-escaping="yes" select="substring((@Body),50)" /></div></TD>

v/r
Ernest
Does any part of the "Body" field content appears on the page?
Please try this code:
<xsl:value-of disable-output-escaping="yes" select="substring({@Body},0,50)" /></div></TD>


svetaye,

I added the code as you asked and when I refreshed the page the "body" of all announcements were not shown.

I'm confused...

v/r/
Ernest
Ok,
Maybe your "body" column has another internal name?
Let's try to do it using the wizard.
On the right side of the screen you shoud see the "Data Source" toolbar (if you didn't close it). There you can see all list columns of the list. Did you see the "Body" column there?

If so please drag this column to your data view on the page. It will place the code that you need to display the body. Something like this: <xsl:value-of select="@FieldName" disable-output-escaping="yes"/>
There you will see the internal name of the "Body" column.

Delete the "@FieldName" include quotes and type double quote again - the auto complete will show up.
Click on the Expression builder and use the wizard to complete the code.

A few SharePoint XSLT tips here:
http://fuchangmiao.blogspot.com/2008/05/sharepoint-xslt-tips.html
Strange,

Here is what I get:

SharePoint Designer cannot render the XSLT in this Data View...

Failed seting processor stylesheet: 0x80004005: Expression expected.substring(-->{<--@Body},0,50)

Here is the code:

<TD Class="{$IDAFOBQG)"><div dir="{ddwrt:GetVar('Direction'))"><xsl:value-of disable-output-escaping="yes" select="substring({@Body}),0,50)" /></div></TD>
Please try to remove {} brackets from the {@Body} .
Svetaye:

When I remove the brackets and view there is no body content...it removes the content of the body.

This is so strange, as I did not think truncating could be so difficult in SharePoint.

Phil
I can see only one reason for this empty "Body" issue : you are using "Enhanced Rich Text" mode of the column. In this case you can't actually know how many characters you'l have in this field because Enhanced rich text field always add ome HTML to the content.

So try to set substring limit to some big number like 600 and check the content. if you see the result you have two options: use some big number as a limitation like 250 chars instead of 50 but it never will be exact the same number of characters (you don't know how many HTML characters every field contains) or you can change the column settings in the list settings and set it to "Plain Text". Plain text will contains only the text content without pictures'tables or any styles inside. Plane text you can truncate to 50 characters witout any issues.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Excellent!