1
vote
1answer
21 views

How to use the reorder method for document library?

I have a document library of 179 documents, and I want to reorder them. I have this code to try swapping the first two documents bool u = sharepoint.library.Ordered; if (!u) { ...
1
vote
1answer
16 views

Can you add metadata to a folder in a document library?

I am making a visual webpart for SharePoint 2010 that displays files and folders from a document library, and I want to keep ordering to folders. I want to be able to sort folders so I need a way to ...
0
votes
1answer
28 views

Listbox in webpart has no selection

I'm having a problem that's really blowing my mind right now, because it seems like some basic .net functionality isn't working properly. No doubt I'm missing something really obvious. I could really ...
0
votes
1answer
46 views

file downloading in sharepoint

I've created a web-part. I've added few documents to it. I'm implementing download functionality. I want file download dialog. My code is like this. DownloadItem(SPListItem item) { // Get physical ...
0
votes
3answers
145 views

Link to a document of shared document library

My specifications: Windows Server 2003 Visual Studio 2008 Windows Sharepoint Services 3.0 visual studio 2008 extension for Sharepoint services 3.0 I'm creating a web part with a SPGridView. I ...
0
votes
2answers
57 views

Filters get removed from external list when document is deleted from XsltListViewWebPart on same webpage

I have a webpage on Sharepoint 2010 that has: 1) An external list 2) A webpart that has XsltListViewWebPart referring to a document library When a filter is applied to External list, it filters out ...
1
vote
0answers
71 views

Issue with web parts disappearing

First time here and I'm hoping someone can help me. I've searched all over and can't find anything... We have an application running in Central Administration that generates ASPX files to specified ...
1
vote
2answers
79 views

Problem with global doc lib webpart

I am trying to create a global webpart that should represent a filecenter. The filecenter is a document library on the root site of my sharepoint portal. I followed this guide here: ...
1
vote
1answer
241 views

Display 0 rows in list view webpart if there is no filter set?

I am trying to setup a custom page that uses the document library "A" in multiple webparts to show only certain columns based on a "trickle-down" connection system. (please note ALL list view ...
1
vote
0answers
80 views

Webpart to archive selected documents in a Sharepoint 2007 document library

I am new to Sharepoint. Currently using Sharpoint 2007 for doing some POC on archiving selected documents in a document library. I added a column to Document library as Archive, which is Check box. ...
1
vote
1answer
295 views

How to fetch document name from a document lib into a dropdown

This is my ascx page(Visual WebPart): <asp:DropDownList ID="DropDownList1" runat="server"> </asp:DropDownList> <asp:Button runat="server" ID="btn" onclick="btn_Click" ...
3
votes
5answers
441 views

Automatically add tag to uploaded document in sharepoint

My environment is sharepoint 2010 and vs 2010. I already have an OOTB document library that I am using and I wanted to know how I can add a tag or keyword to a METADATA column. I am using the same ...
1
vote
1answer
652 views

How do I Retrieve the choice values of a column in a Document Library

I am fairly new to SharePoint development and as you may all know that it is very basic for one to know how to access fields in a choice column... My problem: I want to access the values of the ...
3
votes
3answers
5k views

Show recently modified or uploaded documents

I'd like to display a list of the most recently modified documents across all document libraries in a site in Sharepoint 2010. It seems that the Content Query webpart might do this for me, but the ...
0
votes
1answer
201 views

Opening videos in browser with XsltListViewWebPart

I created a Document Center site which has its own Content Query Web Parts. When I upload a video file to this document center, the Content Query Web Parts are playing the videos in browser with modal ...
2
votes
3answers
6k views

Show only a subfolder of a document library in a web part

I want to show only a particular folder in the right pane of a page using a webpart in Sharepoint Foundation 2010. Is this possible? When adding the webpart, I could only add the document library. ...
5
votes
1answer
290 views

Tooltip showing latest pictures inside a Picture Library for SharePoint 2007

Inside a SharePoint Document List, I keep a few folders - Folder A, Folder B, Folder C. Each folder have some pictures inside them. May I know if there are any web part that can help me display at ...
2
votes
2answers
739 views

Display list of file(s) within document library

Scenario : Sharepoint 2010 foundation site with a document library. The library has many folders (and probably sub-folders in each folder). There are files in these folders/sub-folders. I am looking ...
3
votes
1answer
889 views

Connecting web parts to metadata navigation in document library

Is it possible to read from the metadata navigation in a document library so that the selected value(s) can be passed into another web-part (in this case a CoreResultsWebPart ). The IsNodeSelected ...
0
votes
4answers
537 views

Getting Title of most recently uploaded document in document library

I have a document library that a user uploads a file to daily. I then have to display the data from the most recently uploaded document (xls) in a web part. I have gotten everything working except ...
0
votes
1answer
186 views

Save a document library template with pages that has web parts and then create a new library

I have a document library with a few pages and each page has some web parts [webpart are custom web part] But if I create a document library template (with content) and then create a new document ...
1
vote
1answer
333 views

Tree View of Related Items

Scenario We have a document library on our portal which contains word documents. Lets say the word documents can be grouped according to title, for example: Grouping 1 contains the titles: 1-1, ...
2
votes
1answer
190 views

Possible to create a document library for my web part on installation?

I have a web part that need to have its own document library. Is there any way for me to check to see if that document library exists and if not create it, when the WSP is installed?
1
vote
2answers
337 views

Creating aspx pages

Background: (tool used Sharepoint designer 2007) 1. I created a aspx page (using UI) that is inside a document library (content type is web part pages and a custom content type). 2. I then added 3 web ...