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
16
votes
2 answers

Is there a complete list of sharepoint online rest api from official docs?

As title said, Is there a complete list of sharepoint online rest api from official docs? I've done some research. However from the MS docs I can only find Complete basic operations using SharePoint REST endpoints and Get to know the SharePoint REST…
NaaHCat
  • 450
  • 2
  • 4
  • 10
16
votes
2 answers

Dlls not deployed to GAC - SharePoint 2013, Visual Studio 2012, .Net FW 4.5

When I create a simple SharePoint 2013 project in Visual Studio 2012 and I want to deploy it, it deploys fine, but Dll is not in the Global Assembly Cache. In Advanced tab, I have added project assembly to be deployed. In different test I set…
gradosevic
  • 4,809
  • 2
  • 36
  • 51
14
votes
3 answers

Creating Folders programmatically in SharePoint 2013

Currently I have code that creates a Folder in the Documents directory when run: using (var context = new Microsoft.SharePoint.Client.ClientContext(sharePointSite)) { context.Credentials = new…
B-M
  • 1,231
  • 1
  • 19
  • 41
14
votes
10 answers

SharePoint App Deployment error : 'Failed to install app for SharePoint'

When I tried to add a SharePoint mvc app I am getting following error: Error occurred in deployment step 'Install app for SharePoint': Failed to install app for SharePoint. Please see the output window for details. Detailed stack…
Praveen Prasannan
  • 7,093
  • 10
  • 50
  • 70
13
votes
4 answers

Sharepoint 2013 REST API not returning all items for a list

The title states my problem quite exactly. If I try to gather all 400+ items from a list using sharepoint's REST API, I only get first 100. I have read http://msdn.microsoft.com/en-us/library/office/dn292552(v=office.15).aspx and in the "Working…
leopik
  • 2,323
  • 2
  • 17
  • 29
13
votes
4 answers

How to get version of SharePoint installed?

How can I get the version of SharePoint that is installed on my server?
Ardalan Shahgholi
  • 11,967
  • 21
  • 108
  • 144
13
votes
3 answers

Add user control to web part in Sharepoint 2013

I've got a visual web part (created with standart Visual Stuido 2012 template from "Add new item" form) with just a single
element. I want to programmatically add my own user control to it using the…
4tuneTeller
  • 500
  • 1
  • 7
  • 12
12
votes
1 answer

Can Visual Studio Community install TFS (Team Foundation Server)?

Our team decide to use Visual Studio Community instead of Visual Studio 2013. I wonder can we install TFS in Visual Studio Community and work well? Thanks!
YogaPanda
  • 328
  • 1
  • 3
  • 12
12
votes
1 answer

Using REST to fetch SharePoint View Items

I am trying to construct the correct URL to return the items in a SharePoint View using the REST api. Using my browser and the following URL I can return the items in the…
user3658298
  • 341
  • 1
  • 5
  • 15
12
votes
3 answers

Check if Current Users belongs to SP group using javascript Client Side Object Model

I havent found a specific example of how to get the current user and then check if it belongs to a specific sharepoint group, as I havent found anything I cant provide a code, help on the right direction is appreciated.
Luis Valencia
  • 32,619
  • 93
  • 286
  • 506
10
votes
4 answers

Could not load file or assembly 'Microsoft.IdentityModel

I have developed a SharePoint provider hosted (MVC) app and hosted web application in iis of azure VM (WIN SERVER 2012). When we try to use application using an app, It throws below error. Server Error in '/' Application. Could not load file or…
RiksonTool
  • 147
  • 1
  • 2
  • 13
10
votes
1 answer

How to include Project's FieldValues in CSOM request

I'm trying to pull all Projects information from SharePoint using Client Side Object Model (CSOM). Here is how I'm getting Projects information: projectContext.Load(projectContext.Projects, c => c.Where(p => p.Id == new Guid(id)) …
Vlad Bezden
  • 83,883
  • 25
  • 248
  • 179
10
votes
4 answers

Retrieve Publishing image field with Sharepoint 2013 REST Api / CSOM

We're using the Sharepoint 2013 REST API to get all news items from the Sharepoint. We made a custom ContentType 'Newsitem' with several properties including a Publishing Image Field. var contentTypeId =…
Gigi2m02
  • 1,238
  • 3
  • 17
  • 33
10
votes
2 answers

Optimal/preferred way to call 'SP.ClientContext.executeQueryAsync' in SharePoint

I have been learning client-side object model and came across the method executeQueryAsync. I found there are quite a few ways to call this method. Some of the one I found were these: var context = new SP.ClientContext.get_current(); // Option…
Naveen
  • 6,786
  • 10
  • 37
  • 85