Tagged Questions
0
votes
0answers
3 views
Dynamically post contents of one cell as text
I have a large library that contains basic information for all of our company's supported software. Each entry has a local link to the installation files, but these files change periodically. Is there ...
1
vote
1answer
29 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)
{
...
2
votes
2answers
23 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
39 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
52 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
195 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
69 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
74 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
93 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
262 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
83 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
311 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
450 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
692 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
6k 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 ...