Questions tagged [sharepoint-2013]

Microsoft SharePoint version 2013

Definition

SharePoint is a collaboration environment that organizations of all sizes can use to increase the efficiency of business processes.

Important changes in SharePoint 2013

  • Cloud App model

  • Development tools enhancements

  • Expanded APIs

  • Database caching, called Cache Service

  • Content-aware switching, called Management

Hardware/software requirements

These can be found on this page on TechNet.

SharePoint Editions

SharePoint has multiple editions available including:

  • SharePoint Standard
  • SharePoint Server
  • SharePoint Enterprise
  • SharePoint Online

Latest releases of SharePoint

  • SharePoint Server 2019
  • SharePoint Enterprise 2019
4860 questions
6
votes
2 answers

Can't rename folder in SharePoint 2013 using REST

I'm having trouble renaming a folder inside a document library using the REST api provided by SharePoint 2013. Here is the code I'm using below. string digest = String.Empty; using (var response = await…
TroyC
  • 482
  • 1
  • 6
  • 8
6
votes
3 answers

sharepoint 2013 custom site template not showing up on subsite

I have a sharepoint 2013 subsite called 'projects' where all its projects are subsites that were created by a site template. I wanted to make changes to the template so I created a new 'project' subsite using the template, made the changes and saved…
Asaff Belfer
  • 221
  • 1
  • 2
  • 8
6
votes
2 answers

JavaScript Object.create and IE8

I'm doing software development for SharePoint 2013. Part of this involves overriding SharePoint's file previewer (filepreview.debug.js becomes myfilepreview.debug.js). We've run into problems, however, with IE8. Everything works just fine in…
tnw
  • 13,521
  • 15
  • 70
  • 111
6
votes
4 answers

Why does PreApplicationStartMethodAttribute() not work in SharePoint 2013?

In .NET 4(.5) there is this amazing Attribute: PreApplicationStartMethodAttribute, I want to use it in SharePoint 2013 so I don't have to edit the app_start method in the global.asax file directly. Since SP2013 runs the correct version of .NET I…
Elliot Wood
  • 964
  • 1
  • 9
  • 29
5
votes
1 answer

Sharepoint 2013 GetListItems web service returning a list of folders in library, instead of list of files within a folder

I'm having a problem being able to get the list of items within a folder, it keeps giving me the list of folders in the library, and not the list of files within the specified folder. I'm using a C# program, using the following method to call the…
necrofish666
  • 75
  • 1
  • 7
  • 24
5
votes
2 answers

SharePoint REST API filter based on Today's date only and not time. (Similar to IncludeTimeValue=False in CAML query)

I am trying to get data from SharePoint list with REST API that are created today only. var listName = "Carousel%20News"; var today = new Date().toISOString(); Here is my REST URL : _spPageContextInfo.webAbsoluteUrl + "/_api/web/lists/getbytitle('"…
Rohit Waghela
  • 844
  • 3
  • 11
  • 21
5
votes
1 answer

Sharepoint _api/contextinfo fails with 401 Unauthorized using PostMan

Im currently using Postman app to try the various Sharepoint Api. To retrieve the RequestDigest i understand there has to be an api call to /_api/contextinfo with nothing in Body and Accept as application/json; odata=verbose in the Header. However i…
Sujit Jadhav
  • 115
  • 3
  • 11
5
votes
1 answer

SCRIPT438: Object doesn't support property or method 'values'

I have a graph i created from a SharePoint list and it works in Chrome but does not work in IE 11. When i went to debug in IE 11 and I get the error SCRIPT438: Object doesn't support property or method 'values'. I am fairly new to JavaScript. Can…
ShanayL
  • 1,217
  • 2
  • 14
  • 29
5
votes
1 answer

SharePoint on-premises 2013 REST authentication

I'm planning to make a job, coded in Java, on a Linux server that is scheduled to once a day upload a file to a SharePoint on-premises 2013, using the REST API. How can I authenticate this client job? I have googled, but am still struggling to get a…
5
votes
3 answers

Get Year of CreatedBy date in a calculated column

I am trying to create a calculated column in SharePoint 2007. I want it to return the year of the CreatedBy column date and set the day to be 1 and the month to be January the data type returned by the formula is of type Date. Any ideas how I can do…
van
  • 9,159
  • 19
  • 60
  • 93
5
votes
2 answers

How do I find the Tenant ID of my SharePoint Online Account

I am a newbie in sharepoint. I was trying to get the access token via oauth and came to know that tenant Id or site realm of sharepoint account. Where do I find it or how can I retrieve it ?
Sachin
  • 1,675
  • 2
  • 19
  • 42
5
votes
2 answers

Word Automation Service BatchGetSyncJobStatus fails when requesting security token

I'm running a SharePoint 2013 on-premise server on which I have deployed a simple WCF service as a farm solution. The service accepts simple Http post requests that contain single MS Word documents as payload and returns these files converted into…
5
votes
1 answer

SharePoint 2013 REST view item with space in fieldname

I have the following to look up my standard fields in SharePoint 2013: var requestURI = _spPageContextInfo.webAbsoluteUrl + "_api/web/lists/getbytitle('" + listname + "')/items?" + "$select=ID,Title,Status"; $.ajax({ url: requestURI, …
Matthew Dewell
  • 563
  • 7
  • 30
5
votes
1 answer

SharePoint 2013: How to update multi-value lookup field using JavaScript CSOM

I have a Contacts list which has a multi-value lookup field called ContactType. The result of a CAML query will show the following value for ContactType for one of the list items: 1;#Applicant;#2;#Employee I had a look at Fiddler after executing a…
user1309226
  • 739
  • 1
  • 10
  • 31
5
votes
1 answer

Hyperlink control using List box in C#

Is it possible to add a list of hyperlink controls in list box in c#? If possible, how can I do this? Also, I have two textboxes: one for Title and other for URL. When I add a new item, the values in the text boxes must be added to list box as a…
user5038976