Questions tagged [angularjs]
AngularJS, commonly referred to as Angular, is an open-source web application framework, maintained by Google.
149 questions
0
votes
1
answer
31
views
Load Video on SharePoint Online Immediately
We are facing an issue loading the video on the custom landing page (using AngularJS + HTML) on SharePoint online. It takes 2-3 seconds to buffer the video after loading the page, then it's playing, ...
0
votes
1
answer
287
views
PWA/Project Online - Setting Project ID dynamically with REST
I am trying to dynamically set the Project UID in an Angular app which is deployed to every subsite throughout my PWA. I need to be able to ideally, store the Project UID in a global variable which I ...
1
vote
0
answers
147
views
Add SPFx to Angular Page
My organization has a site completely designed in angularJS(Not designed by me). Now I have designed a web part using SPFx which I want to add to the existing site. The web part layout is also ...
2
votes
2
answers
136
views
Call all the versions of a SharePoint comment's field with AngularJS
I created a list with AngularJS, using ng-repeat. The data comes from a SharePoint list.
In my SharePoint list when I open to see the detail I can see the version history of the "Comments" ...
0
votes
2
answers
1k
views
HTML drop downs are not working on sharepoint online page
I am facing one strange issue with HTML drop downs.
We have deployed drop downs on SharePoint online pages using provided hosted add-in (MVC solution type).
We bind data to these drop-downs using ...
0
votes
1
answer
2k
views
How to add link to item field with angular?
I am a beginner in Angular. I am trying to combine several TASKS list into single Angular table. It works well and here is part of my code, JS part:
$http({
method: 'GET',
url: $urllist[1],
...
2
votes
2
answers
5k
views
Creating a SPA (single page App) on SharePoint Online
I am new to the SharePoint world & I have been assigned to make a Single-page Application using any Framework (ReactJS/Angular) on SharePoint online (Microsoft 365).
The Application needs to take ...
1
vote
1
answer
2k
views
How to edit Web Part properties in REST or CSOM?
This is a follow-up to my earlier question, How to get all properties of a Site Page using REST API?. Using REST in an AngularJS application, I was able to read the properties of the Web Part Page ...
0
votes
1
answer
71
views
Promises resolving out of order
Environment
SharePoint 2016
AngularJS 1.5.4
Situation
I have a query service that wraps REST calls retrieving data from SharePoint lists. This service works without issue in SP 2013, but it is ...
0
votes
1
answer
2k
views
Creating a URL link with href not going to the URL
We have a page that is using AngularJS. I am creating a link:
<div ng-if="breakout.AttachmentFiles">
<div ng-repeat="file in breakout.AttachmentFiles" style="display: flex; align-items:...
0
votes
0
answers
350
views
Retrieve a SharePoint List with Angular JS
I have created an Angular JS application which would output a list of data in a Share Point list. I am trying to make a rest API call to my Share Point List to get the data, however I am unable to do ...
2
votes
1
answer
162
views
Display none in table row
How can I do a display none in div with id="NoveMeses" if all elements from h3 show "N.A"?
If h3 from div row1 and row2 show me the span="N.A", I want to display none the div NoveMeses.
There is my ...
0
votes
2
answers
7k
views
Rest API POST method getting 400 Bad request
Im new on SharePoint 2016 and i want "POST" items to list `
var data = JSON.stringify($scope.formData);
console.log(data)
data = data.replace(/[{}]/g, '');
var datavalue = "{__metadata:{'type':'...
0
votes
1
answer
570
views
AJAX to Angularjs Response SharePoint
Can someone give me some assistance in converting this AJAX get list items to $http? Specifically I am trying to get the different fields to $scopes. I am aware that when doing $http now you can no ...
2
votes
1
answer
940
views
Best JS framework(Angular/React/Vue) to use in SharePoint 2013 [closed]
We have tools (Basically CRUD operations in multiple lists across sites/site collections. Handles large amount of data and has lots of business functionalities/logic) that were built using jQuery and ...
0
votes
1
answer
430
views
Import export users from SharePoint group to excel using rest
I want to add/remove users from SharePoint group when excel file uploaded by admin person using rest odata or angular.
Can any one please help me in this requirement?
0
votes
3
answers
867
views
Call a executeQueryAsync function inside success of a function
I am able to fetch single SharePoint List using JavaScript.
But here I need to Query other list based on the value fetched from first list.
I have also used angularjs for the page.
Find the below ...
3
votes
1
answer
1k
views
SPFx adal acquire token renewal failed
I have created an angular-adal SPFx project, now when I'm trying to acquire the token. It always displays a message:
Token renewal operation failed due to timeout
adal.acquireToken("Dynamic 365 API",...
0
votes
1
answer
44
views
angular-aad-implicitflow
I see in SharePoint PnP Git repo: https://github.com/SharePoint/sp-dev-fx-webparts/blob/master/samples
There is react-aad-implicitflow why not there is angular-aad-implicitflow.
Is there any ...
0
votes
0
answers
175
views
Validate Angular js Textbox
In my project I am using angular js. I have a form and I am filling the form details using rest api. The form will get filled by object. I want to disable textbox which value was empty, so I used the ...
0
votes
1
answer
381
views
How to get all the records which have EventDate greater than today from a Calendar list using angualrjs $http
PFB my code:
var myApp4=angular.module("upcomingEvents",[]);
myApp4.controller("upcomingEventsController",function($scope,$http)
{
$scope.today=new Date();
$scope.today=$scope.today....
1
vote
0
answers
113
views
Sharepoint Angular JS SP.Utilities.EmailProperties not sending emails to all internal recipients
I am sending email notifications with Angularjs and all recipients are internal users. There is one person who is not receiving the emails and she did get it once, the first time we used the ...
0
votes
1
answer
1k
views
Internet Explorer 10 Script7002 XMLHTTPREQUEST network error 0x800c0007, no data is available for the requested resource
I am not sure wha is going on here but I am repeatedly receiving this error when trying to use the REST API when saving a form. I make the $.ajax call, wait for the promise to return but at some ...
2
votes
2
answers
3k
views
PageContextInfo: Page Context is undefined in sharepoint framework (Webpart)
I am trying to upgrade an old sharepoint project to the latest sharepoint framework. The client part is built with angular. As in spfx _spPageContextInfo is not available so I tired changing the code ...
1
vote
1
answer
2k
views
How to edit a Sharepoint list from an AngularJS list?
I am pretty new with AngularJS, and I need to be able to edit some entries of a Sharepoint list but from an AngularJS list that I made.
This is my code right now:
<!DOCTYPE html>
<html>
&...