A number of business areas I work with use a folder structure to organise their Sharepoint housed documents (not ideal I know, but we're stuck with it).

I would like to use a web part page to present a number of views of their document libraries based on the subfolders that the documents appear in, but this is proving more difficult than I had thought. Has anyone overcome this problem in the past?

link|improve this question
feedback

5 Answers

Have a look at the content by type web part - http://codeplex.com/eoffice - probably the most flexible viewing web part.

link|improve this answer
feedback

With Sharepoint Designer you can edit the CAML of your XSLT List View.

If you set the Scope attribute of the View element to Recursive or RecursiveAll, which returns all Files and Folders, you can filter the documents by FileDirRef:

<Where>
   <Contains>
      <FieldRef Name='FileDirRef' />
      <Value Type='Lookup'>MyFolder</Value>
   </Contains>
</Where>

This returns all documents which contain the string 'MyFolder' in their path.

I found infos about this on http://platinumdogs.wordpress.com/2009/07/21/querying-document-libraries-or-pulling-teeth-with-caml/ and useful information abouts fields at http://blog.thekid.me.uk/archive/2007/03/21/wss-field-display-amp-internal-names-for-lists-amp-document-libraries.aspx

link|improve this answer
Sorry just noticed this thread is dead, but it still shows up in google so maybe someone looking for a solution stumbles upon it – schletti2000 Jul 19 '11 at 17:31
The point of StackOverflow is to be a continually updated reference for questions. This would normally be considered a necropost on other sites, but here, this kind of thing is encouraged. :) – Tim Coker Nov 9 '11 at 15:30
feedback

What kind of document library information do you want in the view? How do you want the user to filter the view?

In general the most powerful way of creating views in sharepoint is with the data view web part. http://office.microsoft.com/en-us/sharepointdesigner/HA100948041033.aspx

You will need Microsoft Office SharePoint Designer.

You can present different views of you folders using the data view filter and sorting controls.

You can use web part connections to filter a dataview. You can use any datasource linked to say a drop down to filter a dataview. http://stackoverflow.com/questions/177076/how-to-tie-a-dropdown-list-to-a-gridview-in-sharepoint-2007

link|improve this answer
feedback

I don't know of any out-of-the-box way to achieve this. As you say, this is not how SharePoint lists are intended used. It might work to create a custom site column displaying the path to the document, as this might be used in a filter. Have never tried it, though.

link|improve this answer
feedback

Have you thought about creating a view with 'Folder = Show all items without folders', that would get all your documents out of their folders and then perhaps you could create your filter(s) over that view.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown