Tagged Questions
2
votes
1answer
47 views
Add New List Item with SPServices anonymously
I have an HTML5 + jQuery application with a built in contact form that I wanted to hook into Sharepoint, and Lists seemed an ideal way to do that. I used the jQuery library SPServices to get this up ...
1
vote
2answers
32 views
2;# 5;# Web services returns odd characters
When I use SPServices to query a list it brings back some of the columns with
odd prefixes and encoded characters.
How can I get rid of the Oddball characters?
I recognize the @amp; as a HTML ...
0
votes
1answer
49 views
How to know if content was added to a SharePoint list or folder?
I'm using the GetListItemChangesSinceToken service in order to be notified for changes in a sharepoint list.
This works ok for deleted items since the ChangeType return Delete , but for added items, ...
1
vote
1answer
537 views
jQuery find doesn't return single result - SPServices, SharePoint 2010 Search Web Service
I'm using SPServices to access the SharePoint Search web service. When it returns multiple results my code function fine. However, when it returns on a single result the str.find("Document").length ...
0
votes
2answers
347 views
Creating Groups via Web Service
I am trying to create groups on a SharePoint 2010 site via the UserGroup.asmx web service. I am using jQuery and SPServices to interact with the web service.
When I try to create a group (via the ...
3
votes
3answers
904 views
using jquery and search.asmx service search People in sharepoint 2010
Hi i use below code for Getting people Search. Using below code I am able to search but getting only user name and User my site url.
I want all user profile Property.How I get all user Property using ...
1
vote
1answer
371 views
How to upload a file and create a link in another library using SPServices?
How do I upload a document (PDF) to a library and create a link to it in another library?
I need to do this using SPServices specifically..
1
vote
3answers
488 views
Add to Lookup Column Values During Form Lifespan
Has anyone ever successfully added a new item to a list which is used as the source for a lookup column while using an EditForm (or NewForm, same mechanism) and been able to save the form successfully ...
0
votes
3answers
1k views
Unable to get data from SharePoint web service
I am using the SPServices library to call a web service on a SharePoint site from the my Sites area.
The domains are set up as 'https://intranet.domain.com' and 'https://mysites.domain.com'. So I ...
0
votes
2answers
3k views
Lists.asmx UpdateListItems returns unexpected error 0x80070005
I'm using SPServices to insert items to a list. The code works fine except for, some users see the response below:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope ...
1
vote
5answers
2k views
Error while adding SharePoint web service reference
I got stuck up with the following error, while trying to add reference for the web service Lists.asmx in sharepoint 2010 from VS.NET 2010.
The document at the url
...
0
votes
1answer
434 views
PreSaveAction and CAMLQuery
I'm cross posting this from Stump the Panel for some more visibility from a wider developer base.
I'm trying to create a script I'll eventually adapt into a PreSaveAction, but I'm running into a ...
1
vote
3answers
2k views
Possible to get distinct values from GetListItems?
I am passing this XML:
<soap:Envelope xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
...
2
votes
6answers
3k views
How to update multiple ListItems with a “Where Clause” using SPServices?
I've searched the jQuery SPServices code examples and MSDN references for an simple example how to update several ListItems using a Where-Clause.
Code for updating a single ListItem with ID = 500, ...