Questions tagged [sharepointdocumentlibrary]

A document library is a place on a SharePoint site where users can create, collect, and update files with others. The libraries may be custom modified and allow different access levels.

A document library is a place on either a SharePoint Online or Sharepoint Server site where users can create, collect, and update files with others.
The libraries may undergo custom modifications:

Access to the library is granted on the basis of permissions which can be granted to internal Sharepoint users or external. The permissions have different levels, such as read-only and contribute: http://office.microsoft.com/en-001/windows-sharepoint-services-help/permission-levels-and-permissions-HA010100149.aspx

Access to the library may be granted for a document, list item or a whole folder: http://office.microsoft.com/en-001/sharepoint-server-help/manage-permissions-for-a-list-library-folder-document-or-list-item-HA010021564.aspx

You may also grant access to external users (given right permissions) http://office.microsoft.com/en-001/sharepoint-server-help/sharepoint-document-libraries-i-introduction-to-sharing-files-RZ010234528.aspx?section=3

Sharepoint libraries accept selected file types and some document types, like .aspx may be added to a Sharepoint library: http://office.microsoft.com/en-001/office365-sharepoint-online-small-business-help/types-of-files-that-cannot-be-added-to-a-list-or-library-HA101907868.aspx

Their content may be accessed by apps you are developing, e.g. using NAPA, Visual Studio: http://msdn.microsoft.com/en-us/library/office/fp179930.aspx

182 questions
0
votes
1 answer

Retrieve explicit values from document library

I'm trying to pull some fields from my Document Library. Right now, I can retrieve these 2 fields to return the correct values, in my success function. while (listItemEnumerator.moveNext()) { var oListItem = listItemEnumerator.get_current(); …
John
  • 55
  • 1
  • 10
0
votes
1 answer

Unable to auto assign Document properties from Document Set shared columns

I have a SharePoint document library I am working on. It has a list of document sets. Each document set has a few fields that are marked as "Shared" so that they can be inherited by the documents inside. When I upload a document inside a form opens…
0
votes
1 answer

Sharepoint 2013 workflow not firing when document checked in but works if checked out

We have a document library that has both Document sets and Documents. We also have a Workflow that is manually started by the user on any item in this library. The problem we are having is that the workflow doesn't start if the document is checked…
0
votes
1 answer

Attaching more than one metadata tag on a document that is uploaded to a SharePoint document library

I am able to easily added a document to the site. I am able to fill in one and only one of the columns on the document library. I want to need to be able to add more than one in the selection. It is only adding the last one from the check box…
0
votes
1 answer

How to quickly find document using guid in SharePoint Foundation 2010?

We have multiple content databases and each content database have multiple site collection. Site collection is having document libraries. We are using them to store documents. We have guid (UniqueId) of content database, site collection, document…
Shailesh Jaiswal
  • 3,606
  • 13
  • 73
  • 124
0
votes
2 answers

Programatically unpublish a document in Doc Library in Visual Studio in SharePoint 2010

I'm copying a document from one doc library to another library as a New Version. It's working fine and Publishing the copied document in the destination library. Is there a way to either copy it unpublished, or add a step to unpublish the current…
0
votes
1 answer

programmatically get children of folder sharepoint

I have been asked to retrieve the contents of a document library and display them on a webpage with links to download using MVC. I can retrieve all the documents from the library with no issue. However when the documents are stored within subfolders…
0
votes
1 answer

Download a document from SharePoint 2010 document library using MVC

Hi I want to display a list of documents in an MVC view and be able to download them on click. I have attempted a solution myself as shown below. I have been struggling with this for a long time so any suggestions will be appreciated. namespace…
0
votes
1 answer

Display contents of SharePoint 2010 document library on MVC page

I have been struggling with this for a while now and I cannot find any helpful information on the interweb or forums etc. Basically I have been asked to output the contents of my SharePoint 2010 document library onto a standard MVC web page. Here…
0
votes
1 answer

Is it possible to modify a .js/.json file in a Document Library using only javascript ?

We have a html file in a Document Library which contains a large html table with useful info. (this files is exported manually from a different app) The info would be even more useful/accessible if it was in json format. (far faster to load and more…
0
votes
2 answers

Display a success message to user in a SharePoint Document Library after validation in ItemAdding Event

When validating a document in the ItemAdding event there are many ways to display errors to the user, but there doesn't seem to be a way to display successes to user, like a validation was successful. An info message to the user at the top of…
Andrew
  • 664
  • 13
  • 32
0
votes
1 answer

Sharepoint. Access denied on document librarry item

I faced to problem with sharepoint permissions. When I try to open document library item (.aspx) - Access denied. I created specific group with read perrmissions, included user on it and applyed it on doc lib, and doc lib item (.aspx). Doc lib is…
-1
votes
5 answers

How to move document library sharepoint 2007

We have one client requirement to move document library from one subsite to another. While moving we should move all documents along with all the custom columns with its values as it is. All the column value must remain same eg column name Modified…
-1
votes
2 answers

Is there a way to remove an existing SharePoint (Online) file lock?

We are getting the locked for shared use message when trying to upload/checkout a file in a SharePoint library. The user that is not online at the moment. I tried removed her sharing permissions on the file and its still shows she is editing it…
Eric
  • 958
  • 1
  • 11
  • 28
-1
votes
1 answer

Sharepoint API to Upload Files and copy to Ms teams

I need to add files to SharePoint and then need to copy these uploaded files to Microsoft Teams File Tab Anyone can help me here that what steps I need to follow to create files and then copy to Files Tab of Ms teams. I was looking at MS Graph API…
1 2 3
12
13