Tagged Questions
1
vote
2answers
108 views
How to authenticate user in sharepoint online using javascript
I have one sharepoint online 365 site. In that one public site will be there. In that there is sign-in option. Generally When ever user clicks on signin it will redirect to microsoft login page. But i ...
0
votes
1answer
22 views
How can I get a list of all user alerts set on a site collection in SPO?
I need to retrieve a list of user alerts set on a particular site collection in SharePoint Online. This is possible through the web UI under Site Settings -> User Alerts, but requires that I choose ...
0
votes
1answer
100 views
Add user to sharepoint group
I want to add a user to SharePoint group (in another site collection) using JavaScript API.
Here's my code
var clientContext = new SP.ClientContext("https://MYURL/sites/dev2/");
var ...
1
vote
2answers
261 views
The property or Field not initialized exception even I request explicitly
I'm using the following code to get the user permissions on a list item in javascript csom
context = SP.ClientContext.get_current();
var field = ...
1
vote
0answers
44 views
using sharepoint OOTB DragDrop.js library in Custom webpart
I implemented drag and drop file upload functionality with using REST api in my webpart .
But i found an OOTB sharepoint dragdrop.js library which has numerous methods to create drag drop control.
...
0
votes
0answers
25 views
field 'choices' not initialized not requested
Hi im using the following code to get choices of a Choice site column.
some times Im getting 'Chices' not initialized error in console.
var searchtaxonomy_context = SP.ClientContext.get_current();
...
0
votes
2answers
110 views
List API get all items limited to 100 rows
When doing a GET call to the List API from JavaScript: "/_api/web/lists/GetByTitle('ListName')/items" the results returned are limited to 100 rows.
Is there any way to return more rows in the result, ...
0
votes
2answers
199 views
Creating site using javascript object model error: The request uses too many resources
I'm trying to create a site in my sharepoint hosted app using the javascript client object model in a SharePoint online site. I use a custom template when creating the site. This is my code:
var ...
0
votes
0answers
38 views
Create external users using CSOM
Does anyone know if it's possible to invite external users with the client object model or is this only possible in the UI?
1
vote
0answers
61 views
Get list of installed apps using Client Object Model
I have been trying hard to find any example, resource which explains how to get a list of installed apps in SharePoint 2013 environment using Client Object Model. So far I have found nothing.
Could ...
1
vote
1answer
173 views
Accessing files in SharePoint AutoHosted App 2013
I am creating an AutoHosted App in SP 2013 and trying to access the file under one folder of remote Web ( need to pick the file from current project directory location and pass that file to another ...
1
vote
2answers
305 views
Connect to SharePoint Online using the Client Object Model from .NET 3.5
We have an on premise SharePoint 2010 farm, and a SharePoint Online 2013 farm. We would like to be able to have a solution running on the on premise farm that will talk to the online farm.
Since the ...
2
votes
1answer
2k views
Javascript get SharePoint List items, enumerate, and locate and pin each item on Bing Map
The map is rendering and debugging in IEf12 does not show any error with loading the list. I am using a CEWP referencing this file - SharePoint Online (Office 365). What's wrong with this code?
...
0
votes
1answer
34 views
SP2013 App icon not rendered, only App link is displayed + how we can set the sliding transparent hover text over App icon?
I am facing an App Icon related issue.
I am creating SharePoint Hosted App which I am deploying to SP 2013 Developer site.
By default any app will have the AppIcon set under Images folder. Also it is ...
0
votes
1answer
401 views
App issue with SharePoint 2013 Developer Site
In SharePoint 2013 Developer Site:
I am installing an app to my site and it worked fine with default stuff. I added some custom .js file in this app which will set the master page of site coll and ...