Click here to Skip to main content
Licence CPOL
First Posted 19 Dec 2008
Views 48,638
Bookmarked 20 times

Displaying Attachments with the Data View Web Part: Part 1

By | 19 Dec 2008 | Article
Displaying WSS or MOSS item attachments with the SharePoint Designer Data View Web Part.

Introduction

SharePoint Designer’s Data View Web part is a great control. I use it a lot when customizing list views. One thing I don’t like is the lack of attachment support. With Data View, you can only detect if an item has attachments or not. You can’t display them or get any information about them.

As I understand, Microsoft does not recommend any recursion while enumerating lists, and maybe this is the reason you can’t browse an item’s attachments.

I solved this issue in two ways. One is using the Lists.asmx Web Service and is for an authenticated environment, and the other is with a custom generic handler (ashx) page.

SharePoint (WSS 3.0 and MOSS 2007) has a Lists.asmx Web Service which you can use for accessing SharePoint objects. The good thing is that you can use this Web Service from JavaScript. So, you can request some information from SharePoint directly from your JavaScript functions. What are the requirements? You have to be authenticated if you want this to work.

You have a lot of resources on the web for accessing the Lists.asmx Web Service from JavaScript. I tested two of them, and they both worked. One resource is Darren Johnston’s blog, which uses his own APIs for SharePoint communication, and the other is Glenc’s blog, which uses a prototype for HTTP XML requests and his own script. At the end, I finished up with Darren’s API, which is very easy to use and is very powerful.

Step 1

First, you need to download the JavaScript Web Service API for Office Live and SharePoint (1.0.1) from Darren’s blog. After that, you need to unpack it to some folder on your SharePoint site. I created a new folder in the SharePoint Designer, called js, and dropped all my JavaScript files into the folder:

Att1.jpg

Step 2

The next step is to create a new page in the SharePoint designer. You can do that by going to the New>Page menu option. Optionally, you can select to create a page from the master page (picture 2):

Att2.jpg

Step 3

In order to create a Data View Web Part, you need to create custom content for the web page (see picture 3):

Att3.jpg

Your master page will look a little different, but that’s OK. I just have a custom master page. The flow is the same.

Step 4

Now, we can add a Data View Web Part. To do so, you can go to Insert>SharePoint Controls>Data View. Your page should be looking like this:

Att4.jpg

Step 5

The next step is to select a list you want to display. In my case, it is list called Vesti (which is Serbian for News). You can select any list you like (one with attachments would be great). You can select a list by going to the Data Source Library, selecting the list, and then clicking the Show Data button:

Att5.jpg

Step 6

From the Data Source Details tab, you can select the list columns you want to display and just drag them to your Web Part (place on the page that says “Click a data source in the Data Source Library…”). Now, our page should look like this:

Att6.jpg

Step 7

OK, we have our Data View now. We will now add the display attachments option. First, we will go to the code of our page (just click Code in the lower left corner of the page). Paste this code in the head section of the page (the one surrounded by <asp:Content id="Content1" runat="server" contentplaceholderid="head">):

<script src="js/SPAPI_Core.js"></script>
<script src="js/SPAPI_Lists.js"></script>
<script>
function getAttachments(List,ID){
var lists = new SPAPI_Lists('http://YourSharepointSite');
var items = lists.getAttachmentCollection(List,ID);
if (items.status == 200){
var rows = items.responseXML.getElementsByTagName('Attachment');
var str="";
for (var i=0; i<rows.length; i++){
temp=rows[i].childNodes[0].nodeValue;
ext=temp.substring(temp.lastIndexOf('.')+1);
switch(ext){
case "jpg":
case "png":
case "gif":
bdy='<img src="'+temp+'" alt="'+temp+'" border="0" />';
break;
default:
bdy=temp; 
}
str+='<a href="'+temp+'" target="_blank">'+bdy+'</a>'+"<br />";
}
document.getElementById("att"+ID).innerHTML = str;
}else{
alert('There was an error: ' + items.statusText);
}
}
</script>

Don’t forget to enter your site name. Our function here requests an attachment collection from the SharePoint Web Service. Then, it selects all the attachment nodes, and depending on the extension, it creates only textual links (all files other than images) or image links (if the attachment is an image).

Step 8

Now, go back to the Design view. Select a column where you want to display the attachments (for example, I chose the Body column). Click on it, then click on the Split button (for Split View); see this picture:

Att7.jpg

Then, just paste this code below the column data (<xsl:value-of select="@Body" disable-output-escaping="yes"/> in my example; in your example, @Body would be your column name):

<xsl:if test="normalize-space(@Attachments) != '0'">
  <div id="att{@ID}" style="padding: 10px;"></div>
  <script type="text/javascript">
    getAttachments("YourListName",<xsl:value-of select="@ID"/>);
  </script>
</xsl:if>

In this code, if the item has attachments (<xsl:if test="normalize-space(@Attachments) != '0'">), we will call the getAttachments JavaScript function with the ListName parameter – enter your own, and the ID which will be automatically populated. We have a div container above. We need it to display our attachments.

That’s it. Now, you can preview it.

Att8.jpg

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Drasko Popovic

Web Developer
CPU
Serbia Serbia

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionDownloading the API Pinmembercdestela11:45 18 Oct '11  
GeneralSuper Simple Method - For Simple Minded Guys Like Me PinmemberTheLawz10:07 5 Oct '11  
GeneralMy vote of 5 PinmemberTheLawz9:17 5 Oct '11  
QuestionGreat Article but need to tweak the code PinmemberNicola Williams5:51 4 Oct '11  
GeneralNot seeing it Pinmemberpbut2084:24 30 Aug '10  
GeneralRe: Not seeing it PinmemberOP Wannabe5:38 5 Nov '10  
Generalgracias!!!! Pinmemberdmedellin7:37 17 Feb '10  
GeneralGreat Post Pinmemberachyut_psd8:00 27 Nov '09  
QuestionDisplay attachment image on custom list display page Pinmemberadityapatel7075:29 18 Sep '09  
Generali want to show word document (.doc) attachment Pinmemberjagadeeshv0:36 17 Sep '09  
QuestionWorked Perfect! But How do you change the name that displays? PinmemberOutlawT0rn6:18 27 Jul '09  
GeneralCan't get Status field for Project Tasks list Pinmemberdoug19654:27 17 Jul '09  
GeneralRe: Can't get Status field for Project Tasks list Pinmemberdoug19658:00 17 Jul '09  
General... PinmemberJill Riesenberg9:43 10 Jul '09  
GeneralRe: ... Pinmemberroytje923:51 13 Jul '09  
Generalattachement not shown to other user other than administrator Pinmemberrazamemon8:10 16 May '09  
GeneralWhy not use the getListItems only once PinmemberJonathanRoussel1:35 14 May '09  
QuestionOther files types Pinmemberhasinap2:20 26 Mar '09  
GeneralThanks Pinmemberphillipe scu16:51 3 Mar '09  
GeneralErrror:Value does not fall within the expected range. PinmemberPatrick Olurotimi Ige14:34 24 Feb '09  
QuestionWow! Just what i needed... but i need some help please. Pinmemberbdimitre4:41 15 Jan '09  
QuestionAnonymous User PinmemberAhmed Waly3:09 12 Jan '09  
AnswerRe: Anonymous User PinmemberDrasko Popovic1:52 13 Jan '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120528.1 | Last Updated 19 Dec 2008
Article Copyright 2008 by Drasko Popovic
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid