Update:
I finally got around to testing this in SharePoint 2010, and it works! Every once and a while I got an error message when saving the page after adding the web part, but it was random and I could not duplicate it. If you try this in 2010, then please add a comment to this article and share if it worked or not.
Article summary:
- I will show how to create a custom web part that represents a list or library’s view and use this web part in other sites (at least in the same site collection) without copying documents between sites.
- This custom web part supports a tool bar so files can be uploaded and maintained in a single library, but viewed and maintained from any site in the site collection that has this web part.
- Tools needed:
- SharePoint Designer (to make one quick change, export the web part, and then optionally roll back the change)
- Some way to find the site’s GUID (see link to a tool below)
The Question:
What started out as a simple question has led to some interesting results. So interesting that someone somewhere else must have written this up. I’ve not found it, so here goes…
The question that started this was “why don’t list and library web parts have a ‘Export’ option?” Most other web parts do.
First some observations:
- While editing a web part page, click a web part’s menu and you will usually see an Export option, except for list and library web parts.
- List and library view pages are web part pages (they have “Edit Page” in the Site Actions menu") and the displayed list is a web part.
So how can you export a list web part?
Turns out to be pretty easy. Edit the page in SharePoint Designer and change one word.
- Open the site in SharePoint Designer and double click on a page with the web part (default.aspx, Shared Documents/Forms/Allitems.aspx, etc)
- In the code view find the web part and find
<ExportControlledProperties>false</ExportControlledProperties>
and change from “false” to “true” - Save the page (this will “unghost” the page, but you can undo the changes after the export is complete – right-click the file in the Folder List and select Reset to Site Definition)
- Go to a browser and visit this page. Go to Site Actions, Edit Page.
- Click Edit in web part you just modified and click Export.
- Give the file a name and save it somewhere where you can find it in the next step.
To import the exported settings as a new web part:
- Visit your top level site in the site collection and go to Site Actions, Site Settings, and in the Galleries column click Web Parts
To add the web part.
- Nothing special here. Add this web part just like any other web part.
Some differences…
Oddly, the displayed columns are different. The AllItems view displayed Type, Name, Modified and Modified By. The new web part displays Type, Name and Modified By. This is easy to fix. Edit the web part and change the Selected View property to All Documents then you will get the same list of columns in both displays.
The new web part does not display a toolbar by default, but this can be enabled from the web part’s properties panel. If the toolbar is enabled you will see all of the buttons found in the AllItems page, New, Upload, Actions and Settings (depending on the current user’s security rights).
Now test the web part in a sub site….
Error!
Unable to add selected web part(s).
List does not exist.
The page you selected contains a list that does not exist.
On the first attempt it appears that the new exported web part will not work on another site. Time for more research…
Find the missing GUID
Open the .DWP (.WEBPART in 2010) file created by the Export. Find these two lines:
SP 2007
<ListName …..>{ list_guid_here } </ListName>
<WebId ….> all_zeros_guid_here </WebId>
SP 2010
<property name="ListName" type="string">{ list_guid_here } </property>
…
<property name="WebId" …>all_zeros_guid_here </property>
SharePoint uses Globally Unique IDs (GUIDS) to identify just about everything stored in the databases. Notice that the ListName has a GUID, but the WebId is all zeros. Replace the zeros with the GUID for the site that owns the list and all will then work.
How to find a GUID
I can’t find any place in the the pages exposed in SharePoint Designer where the web site’s GUID is used, although the list’s GUID can be found in some of the URLs (for example after clicking Settings, List or Library Settings). I wrote two little utilities to display a site’s GUIDs, one a Windows application and the other a page you can deploy to the LAYOUTS folder on the server.
See: http://techtrainingnotes.blogspot.com/2009/03/sharepoint-finding-sharepoint-guids.html
Quick note: Internally a site is call a “web” and a site collection is called a “site”. (go figure…) The utilities above use the web and site names.
Update the web part file
Edit the WebId element and replace the all zeros GUID with the site’s GUID:
SP 2007” <WebId ….> all_zeros_guid_here </WebId>
SP 2010 <property name="WebId" …>all_zeros_guid_here </property>
After updating the DWP file with the site’s (web’s) GUID, re-upload it to the web part gallery and go and test the web part in a sub site.
And for the “Strange Things” list… the GUID for the web site does not include brackets ( { } ) and is in lower case. The GUID for the list must have brackets and MUST be in UPPER CASE or it will not work.
Watch outs and warnings!
- This has not been tested in a production environment – you are on your own! (Please let me know if it works or does not work for you)
- So far I have only tested this on MOSS 2007 Enterprise and SharePoint Server 2010, but it should work in WSS and SharePoint Foundation.
- I have tested this so far with document libraries and several lists such as Announcements, but not with every list and library.
- This will only work within the same site, or within the same site collection. It will not work between site collections, between applications or between servers.
- The view displayed in the web part is a copy of the view in the original list or library. Use Edit, Modify Shared Web Part to pick another view or to refresh the view.
- Users will need rights to the original list or library. This web part is only a view of the real list.
- Alerts will be stored in the site with the original list so alert management will need to be done from that site’s Site Actions, Site Settings menu.
- Most menu options will display screens from the site with the original list, but when the user clicks OK, Cancel, Close, etc, they will return to the site with the web part. One exception is if an operation generates as error, the “Go back to site” link will take them to the list’s site, not the web part’s site.
- Batteries not included, your mileage may vary…
Have fun, and let me know if this works or does not work for you.
.