Skip to main content

Questions tagged [angularjs]

AngularJS, commonly referred to as Angular, is an open-source web application framework, maintained by Google.

Filter by
Sorted by
Tagged with
0 votes
1 answer
31 views

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, ...
Deepshikha Paliwal's user avatar
0 votes
1 answer
287 views

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 ...
user2004758's user avatar
1 vote
0 answers
147 views

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 ...
Priya's user avatar
  • 39
2 votes
2 answers
136 views

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" ...
Soul Eater's user avatar
0 votes
2 answers
1k views

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 ...
Mayank Surana's user avatar
0 votes
1 answer
2k views

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], ...
Mark L's user avatar
  • 4,075
2 votes
2 answers
5k views

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 ...
zuest's user avatar
  • 23
1 vote
1 answer
2k views

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 ...
CigarDoug's user avatar
  • 1,095
0 votes
1 answer
71 views

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 ...
Paul Rowe's user avatar
  • 170
0 votes
1 answer
2k views

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:...
Holden1515's user avatar
0 votes
0 answers
350 views

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 ...
john's user avatar
  • 1
2 votes
1 answer
162 views

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 ...
CSAnimor's user avatar
  • 219
0 votes
2 answers
7k views

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':'...
Sunil C Bhuyar's user avatar
0 votes
1 answer
570 views

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 ...
Joseph Cain's user avatar
2 votes
1 answer
940 views

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 ...
Puli Bala's user avatar
0 votes
1 answer
430 views

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?
Bhushan's user avatar
0 votes
3 answers
867 views

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 ...
RBK's user avatar
  • 3
3 votes
1 answer
1k views

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",...
Utkarsh Dubey's user avatar
0 votes
1 answer
44 views

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 ...
Utkarsh Dubey's user avatar
0 votes
0 answers
175 views

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 ...
Naveen Kaliyaperumaal's user avatar
0 votes
1 answer
381 views

PFB my code: var myApp4=angular.module("upcomingEvents",[]); myApp4.controller("upcomingEventsController",function($scope,$http) { $scope.today=new Date(); $scope.today=$scope.today....
Dheeraj's user avatar
  • 463
1 vote
0 answers
113 views

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 ...
lumayara's user avatar
  • 121
0 votes
1 answer
1k views

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 ...
MattE's user avatar
  • 207
2 votes
2 answers
3k views

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 ...
Student's user avatar
  • 331
1 vote
1 answer
2k views

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> &...
Soul Eater's user avatar