Questions tagged [spservices]
SPServices is a jQuery library which abstracts SharePoint's Web Services and makes them easier to use.
563 questions
0 votes
0 answers
25 views
Limit the SharePoint online autolookup query to available values
My SharePoint Online auto-lookup function, implemented with a script, is working as expected. However, I now need to address a limitation: users can currently enter free-text instead of being ...
0 votes
1 answer
199 views
Using Script Editor and/or Content Editor Web Parts Alongside an Infopath Form?
First some info about the system I'm working in: Sharepoint Server 2013 on-premise Sharepoint Designer 2013 Infopath Designer No access to Power Apps I'm new to Sharepoint. I also know very, very ...
0 votes
1 answer
45 views
Find duplicate field in another list using SPservices
When I'm adding a new item to a list Software, I want Country field would be compared to the Country field in another list (Countries) and if it's duplicate, I need to get an error and form couldn't ...
0 votes
1 answer
416 views
spservices.js.Error:- Uncaught (in > promise) TypeError: Cannot read properties of undefined (reading > 'LookupList')
Inside our SPFx web part we have the following code inside the spservices.js code:- spservices.prototype.getLookupFieldOptions = function (siteUrl, listId, fieldInternalName) { return ...
0 votes
0 answers
165 views
Microsoft SharePoint Foundation Subscription Settings Service stuck on "Stopping"
Stopping "Microsoft SharePoint Foundation Subscription Service" in SharePoint 2016 Server by using Power-shell command but it stuck at below line and not responding. Remove-...
0 votes
1 answer
137 views
Custom ASPX Page from HTML file SPServices Issue
I have created a custom HTML page and moved it to a Sandbox Site on my SharePoint site. I have loaded the following script in my <head></head> tag, ttps://cdnjs.cloudflare.com/ajax/libs/...
0 votes
1 answer
127 views
AddListItem is not populating the List in SP2013
I have a knowledge check in HTML form, so I cant inject into CEWP or SP pages. It needs to be JS, CSS, and HTML. How do I populate a list if someone completes a Knowledge Check? It will add the score, ...
0 votes
0 answers
50 views
Need script solution for SharePoint 2013 list? It returns all names vs just the active ones
Anyone have a solution as to what is missing in this script: It returns all the names in the list vs just the active ones? function OpenEmpReport() { var webURL = 'https://....................'; ...
0 votes
1 answer
31 views
SP Services Does not Open Link Correctly
I was looking at my code and it seems that tempObj2.filename = $(this).attr("ows_URL") grabs the URL and Description field which makes the a href invalid when opening in the front end. When ...
1 vote
1 answer
122 views
SPServices is not working in one environment and working in one SharePoint environment/
We deployed solution in one SharePoint server, and uploaded the js file after solution deployed. we are getting the following errors on debugging JS. SCRIPT438: Object doesn't support property or ...
0 votes
1 answer
294 views
Two of the same Service instances and stuck on starting/stopping - How to remove one Instance - OnPrem SharePoint 2016
So we recently updated our SharePoint Farm (6 Servers [2 Web, 2 App, 2 Search]). Everything is working fine beside, SQL Server Repoing Service. We had some problems with getting the settings correct ...
0 votes
1 answer
107 views
SharePoint 2013 SPServices UpdateListItems 403 FORBIDDEN
I have been using the SPServices UpdateListItems code below for several years on an on-premise SharePoint 2013 Enterprise server without any issue. However, we recently migrated to a new cloud-based ...
0 votes
1 answer
61 views
When Calling a JQuery via ID element, it shows twice
When I am calling a JQuery using the ID element in the Div tag, its showing up twice. Is there something I need to do to stop the double showing? Below is my code and under that is the outcome (...
1 vote
1 answer
71 views
How to display just 1 list (announcements) items SP Services
I have a web-part created using SP Services to display Announcements on my SharePoint. I have tried to copy this web part and display different list (also announcements) however I'm having trouble ...
1 vote
1 answer
715 views
Getting ID for a list item with JS
I am trying to set up a simple subscription tool where users can subscribe to or unsubscribe from various distribution list. The idea is that you select a user through a people picker ('subuser'), ...