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
1
vote
0 answers

Using Application Pages for List Forms

I'd like to use an application page that I created in the _layouts folder as the new document form for a document library in SharePoint. When I attempt to do this in SharePoint Designer, I have to browse to the file but it doesn't let me browse to…
1
vote
2 answers

Open & Check out Excel workbook from SharePoint

I'm trying to write data into an Excel workbook that is hosted in our SharePoint document library. I instantiate Excel from Microsoft Project. I tried the following: Check if file can be checked out If it can be checked out, then open it Here's…
Laureant
  • 979
  • 3
  • 18
  • 47
1
vote
2 answers

Update/Change custom TaxonomyFieldValue in document library list in sharepoint using C# CSOM

list of documents thats contains custom taxonomy field column named subject. Need to update subject of thousands records/documents. Please any idea to update the taxonomy field such subject programtically using C# CSOM
1
vote
1 answer

For o365 is there any client side API available for File.ReleaseLock(File.LockId)

In SharePoint there is server side API available using SSOM and Power shell script , but can we do same using CSOM , JSOM OR REST API ? Thanks,
1
vote
1 answer

How to upload files to sharepoint online document library using c#

I have a requirement to upload files in to sharepoint online document library. I have around 150 folders and with files and subfolders under them. I need to upload all these files with the folder structure to a document library. I did some research…
1
vote
1 answer

How to filter columns returned under ListItemAllField in REST API

I used below rest API which I can get all items in specific folder inside SharePoint document library /_api/web/getfolderbyserverrelativeurl('serverrelativefolderurl')/files? $expand=ListItemAllFields I would need to filter some columns which…
Laleh
  • 183
  • 1
  • 1
  • 13
1
vote
0 answers

SharePoint concurrency issues (users accidentally checking out older versions of files)

This is a strange issue that I'm wondering if others have encountered when editing documents in a SharePoint document library. Basic problem is as follows: User1 edits document X User1 checks in document X (say this new version is version 12) Days…
Anssssss
  • 3,087
  • 31
  • 40
1
vote
3 answers

sharepoint moss 2007 add column with javascript

We use MOSS 2007, and I have a document library with several document templates in it. When someone clicks the document template (for example .dotx), the templates is opened. But I want it working so that a new document is opened based on the…
Dennis
  • 1,810
  • 3
  • 22
  • 42
1
vote
1 answer

Sharepoint Document Library - Filename to title using javascript

Good evening! I had a working functionality on a sharepoint document library. It's purpose was to copy the name of a file to the title column. It was working for a long time but after an update to the sharepoint platform it stopped working and i…
user5337388
1
vote
1 answer

Can't upload file to Document Library using CSOM

I am trying to upload multiple file to a Document Library and also update its coloumn values. List(Doc Lib) already exists but I am stuck with uploadinf the file I've tried these methods using lists.asmx NetworkCredential credentials = new…
Andy Crz
  • 13
  • 1
  • 5
1
vote
0 answers

Can SSRS use Excel from Sharepoint document list as data source?

Question like in title. How can I use Excel in document library on some sharepoint site as data source? ODBC support local excels. SSRS support sharepoint lists. But can not find anything about excels in document libraries.
1
vote
1 answer

SharePoint Online Iterating through Document Libraries CSOM

I am trying to iterate though a document library and set each document/items whithin to inherit permissions (at the moment each doc/item is using unique permissions). I am able to get the specific document library, however I cannot iterate though…
1
vote
0 answers

How can I upload an hierarchy of folders (and files) in an app-hosted document library in a Sharepoint hosted app project?

I have a Sharepoint hosted app project (using Sharepoint 2013). I want the users who use the app to be able to upload directly a folder (containing at least one file and one subfolder with at least 10 files) in the app-hosted document library there…
1
vote
2 answers

Event Receiver not firing -Document Library

I have a local development environment in my VM.(SharePoint server 2013 SP1,Visual Studio Ultimate 2013-update3). I'm trying to add a event receiver to a document library on ItemDeleting.Deleting a document to doc lib would add item to my custom…
1
vote
1 answer

Remove all ratings from a SharePoint 2010 document library

I have a SharePoint 2010 document library in which I have enabled ratings. During testing, several people rated a number of documents, and now I'd like to reset all the documents back to zero. However, I cannot find a way to reset the…