Questions tagged [sharepoint-addin]
42 questions
1
vote
1 answer
App catalog is not showing in site collection of SharePoint Admin Center
I am working on SharePoint add-ins to create a remote event receiver. I have generated .app file and need to deploy on my SharePoint site. I followed the following reference to create app catalog for my site.
Reference: Create App Catalog In…

Abhi Singh
- 321
- 3
- 14
1
vote
1 answer
Authentication in sharepoint Addin
We´ve created a sharepoint-hosted Addin and want to authenticate to our enterprise Azure Active Directory. We tried to migrate the AADTokenProvider from the sharepoint webpart, to get our AccesToken from our AAD.
Following is the dependency which…

Grundadrakk
- 103
- 1
- 6
1
vote
1 answer
is there way to add list item using sharepoint add-in or extension
is there way to add list item when user right click of a file using sharepoint add-in or extension as following image

DevÁsith
- 1,072
- 12
- 38
1
vote
0 answers
Get authenticated ClientContext with logged in credentials
I'm new to using SharePoint. Is it possible to get an authenticated ClientContext without a username and password? I would like to make my app automatically access SharePoint if the machine is already logged in to Office 365 (word,excel,outlook) or…

Jon
- 11
- 1
1
vote
1 answer
visual studio dont recognize typescript packages
I created a sharepointaddin app, and added 3 new ts item(app.component, app.module, main), and I implement these typescrit files as regular, but when I run, it throws these exceptions;
and here is the content of ts files;
app.component.ts
import {…

TyForHelpDude
- 4,828
- 10
- 48
- 96
1
vote
1 answer
Can I deploy a SharePoint Add-In with User Profiles (Social) | Read to the SharePoint AppStore?
I'd like to be able to programmatically retrieve a user's name and manager using code similar to the following:
using (var clientContext = TokenHelper.GetClientContextWithAccessToken(hostWeb.ToString(), accessToken))
{
var…

Ryan Shripat
- 5,574
- 6
- 49
- 77
1
vote
0 answers
Kendo UI DataSource in SharePoint Add-in throws o._detachObservableParents is not a function
I'm developing my first SharePoint hosted add-in with Kendo UI and getting the following exception when I run it:
o._detachObservableParents is not a function
I've tried instantiating the object with as little configuration as possible to make sure…

Jacques
- 6,936
- 8
- 43
- 102
1
vote
1 answer
Does SharePoint Online add-in supports HostWebDialog="true" option in New Experience mode?
I am trying to make a SharePoint add-in work with SharePoint Online New Experience mode. The add-in adds a custom menu item that runs inside iframe (HostWebDialog="true") and works well with SharePoint 2013 and SharePoint Online Classic Experience…

IT Hit WebDAV
- 5,652
- 12
- 61
- 98
0
votes
1 answer
Exposing an API endpoint using SharePoint app/addin
I need to expose an API endpoint in an app/addin which published in SharePoint. My customer not giving access to SharePoint API. I can't directly make a request to SharePoint API then. So I need to create an app/addin and expose an API endpoint to…

Ramesh Perera
- 53
- 5
0
votes
1 answer
Tenant admin site returns 404
I am currently trying to start with Office365-REST-Python-Client for App only authentication. My goal is to end up posting a document to SharePoint, on my way to that, I found that I need the following permissions:

Rookie
- 115
- 3
- 12
0
votes
1 answer
SPFX - Best way to store custom settings file when developing extension app
I am developing SharePoint framework Extensions and need to store settings json file which can be configured anytime by admin/privilege person.(such as a component layout settings/app settings).
What is the best way to store such a settings file…

DevÁsith
- 1,072
- 12
- 38
0
votes
1 answer
Can Custom Action Buttons run javascript in handler? Sharepoint add-in
I created a Custom Action Ribbon button for sharepoint online and i want to run a javascript code when the button is clicked.
Sharepoint documentation even provides an example of it:…

alejandro Guevara
- 17
- 5
0
votes
2 answers
How create custom action button on sharepoint online command bar without spfx?
I'm creating a provider hosted add-in for sharepoint online and i want to create button or, better if possible, a dropdown button in the command bar, somthing like this:
maybe this question has been asked many times but i can't find any clear…

alejandro Guevara
- 17
- 5
0
votes
1 answer
SharePoint AddIn, can't find "Style Library"? Language Issue
I have an AddIn that works fine to install in an English setup of Sharepoint. However, when I test this in another language I run into an issue.
The issue is with this code:
var list = web.get_lists().getByTitle("Style Library");
I get the error…

moviaa
- 402
- 1
- 4
- 16
0
votes
0 answers
How to publish SharePoint Add-in project IIS?
I am working on SharePoint add-ins. I followed the followed steps from the following reference.
Step By Step Procedure To Create A Low Trust Provider Hosted App For Office 365 And Host The AppWeb In Local IIS to host my SharePoint add-in IIS. I have…

Abhi Singh
- 321
- 3
- 14