Tagged Questions
0
votes
0answers
12 views
SPServices Search - select first x items using sql type query?
I am using the SPServices library to make search requests in Sharepoint 2010 using this code:
queryText = "<QueryPacket xmlns='urn:Microsoft.Search.Query' Revision='1000'>";
queryText += ...
0
votes
1answer
15 views
How to set a search scope in SPServices search function?
I am doing a search using this code:
var queryText;
queryText = "<QueryPacket xmlns='urn:Microsoft.Search.Query' Revision='1000'>";
queryText += "<Query>";
queryText += ...
1
vote
1answer
37 views
How to filter by only pdf files in querypacket?
In a query packet used in SPServices to do searches on Sharepoint 2010 using jquery, I want to filter the results to only .pdf documents.
How can I do that? The below shows all types of files...
...
0
votes
0answers
78 views
CAML Query on External Content Type not honoring the <In> operator
So I've been testing this out for a day or so. For the life of me I cannot get an external list to listen to honor the <In> operator in CAMLQuery. On any other type of list it seems to work ...
0
votes
1answer
427 views
SPServices: How would I add Ascending=False to CAML in GetListItems
How would I use SPServices GetListItems and still be able to add Ascending=False to the CAMLViewFields? I haven't used this for long and I am just wondering if this is possible?
Thanks as always!
0
votes
1answer
1k views
Get URL of image from Picture Library using CAML
How is it possible to get the URL of an image that is stored in a Picture Library using CAML?
Currently, I've made a CAML Query and run it in the U2U CAML Query Builder, and am seeing values like ...
2
votes
1answer
4k views
SPService GetListItems with CAML : can't get example to work
enter code hereI am using an example I found on codeplex of SPServices with CamlQuery to try to get list item values with where clause on the ID. For whatever reason this doesn't seem to work for me; ...
1
vote
1answer
311 views
CAML query and jQuery to retrieve last item's fields
I want to get list item fields where its the last item that the same user created.
Then I want to populate the newform.aspx with some of these items.
I'm mainly stuck with the query and how to write ...
0
votes
3answers
3k views
SPServices <today /> not returning correct results
This is the chunch of code that I am working with. I am trying to get only the events (normal/all day/recurring) to show, and it is returning all items for the whole week. Any ideas?
...
0
votes
2answers
332 views
Add Timespan to DateTime Column via SPServices (jquery)
I want to increase and decrease a DateTime column from a specific list with jquery and SPServices.
Normaly I should first receive the original datatime and then add the timespan and after that save ...
0
votes
5answers
4k views
Jquery to get list items from sharepoint list
I have a work from my time to use jquery with sharepoint. I have written the code to get list items. When I run in IE it dosen't show any errors to me, but I am not getting the results. Can any one ...
0
votes
1answer
435 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 ...
3
votes
6answers
3k views
How to query using CAML when a value has < in the value
I'm using SPServices to query a list, using CAML, and the column I'm searching (Title) have values that contains < and >.
Is there anyway I can use CAML to find these values? It seems that I'm ...
