Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author | user:1234 user:me (yours) |
| Score | score:3 (3+) score:0 (none) |
| Answers | answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections | title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status | closed:yes duplicate:no migrated:no wiki:no |
| Types | is:question is:answer |
| Exclude | -[tag] -apples |
| For more details on advanced search visit our help page | |
Results tagged with sharepoint-rest-api
Search options not deleted user 47910
Using the Representational State Transfer (REST) interface provided by SharePoint
0 votes
1 answer
3k views
403 Forbidden Error while creating list item using angularjs
I am trying to create a list item using angularjs Http service, but am getting an error 403 Forbidden. PFB the code: <script src="http://win-pmmmma92p9v:19522/sites/JobSeekers/Resources/angular.j …
0 votes
1 answer
908 views
How to attach multiple documents to a SharePoint list Item using REST Api
Hi I am trying to attach documents to a SharePoint list item using REST Api, but am getting an 404 error while performing. PFB my code: function AddAttachments() { var digest = ""; $.ajax( …
0 votes
1 answer
112 views
Display Itemcount retrieved using angular js in div
I have retrieved itemcount of a list using http service, but how do I display the count on the UI? PFB the code: var spApp = angular.module('list-module', []); spApp.controller('list-controller …
1 vote
1 answer
7k views
How to call a function in ng-repeat [closed]
I am trying to call a function for each iteration in ng-repeat, but the function is executing only for the last record. PFB the code: Controller: $http({ url: _spPageContextInfo.webAbsolu …
0 votes
1 answer
370 views
How to get all the records which have EventDate greater than today from a Calendar list usin...
PFB my code: var myApp4=angular.module("upcomingEvents",[]); myApp4.controller("upcomingEventsController",function($scope,$http) { $scope.today=new Date(); $scope.today=$scope.today.t …
0 votes
1 answer
2k views
Retrieve choice values from lookup field in SharePoint2013
I am trying to retrieve choice values from a lookup field in SharePoint 2013 using REST API. PFB the code: $.ajax({ url: _spPageContextInfo.webAbsoluteUrl+"/_api/web/lists/GetByTitle('Test')/fie …
4 votes
4 answers
12k views
How to retrieve sharepoint list items attachments URL along with all other fields using REST...
PFB the code: $.ajax({ url: _spPageContextInfo.webAbsoluteUrl+"/_api/web/lists/GetByTitle('List Name')/items", type: "GET", headers: { "accept": "application/json; …
3 votes
3 answers
7k views
How to get data from enhanced rich text field in SharePoint 2013
Am trying to retrieve data from Enhanced rich multiline text fields in SharePoint 2013, but html tags are retrieved along with the data. I need to preserve the format of the data but without html tags …
5 votes
2 answers
8k views
How to get choice field choices using REST Api in SharePoint 2013
I have a choice field Status with choice values Approved,Rejected and Hold. How do I retrieve these choices using REST Api? PFB the code: $.ajax({ url: _spPageContextInfo.webAbsoluteUrl + "_a …
4 votes
3 answers
555 views
Filter Calendar list view using jquery/restapi/angularjs
I have a SharePoint 2013 Calendar list view in a page, also I have a filter with some choice values. Now based on the filter value, the SharePoint Calendar list view should be filtered . I am not aw …
0 votes
2 answers
936 views
Get current user group name
I am trying to get current user group name when the member is added via Active Directory in SharePoint 2013 using Rest/jQuery. Any help is appreciated.