New Post: Before I get started... Can this be done?
Since they are not lookups, take a look first at this utility: https://spservices.codeplex.com/wikipage?title=$%28%29.SPServices.SPDisplayRelatedInfo&referringTitle=DocumentationIt may already do...
View ArticleNew Post: Before I get started... Can this be done?
Thank you. Good tip. It is starting to make a lot more sense!
View ArticleNew Post: Trying to use SPServices Promise with AngularJS Promise
i'm trying to use spservices to retrieve the sharepoint currently logged on userid and username - how did you get it to work with angular?
View ArticleNew Post: AngularJS and SPServices: can they be used together?
i'm trying to use spservices to retrieve the sharepoint currently logged on userid and username - how did you get it to work with angular?
View ArticleNew Post: Trying to use SPServices Promise with AngularJS Promise
diakonia wrote: i'm trying to use spservices to retrieve the sharepoint currently logged on userid and username - how did you get it to work with angular? Are you trying to use promises? If not, it...
View ArticleNew Comment on "UpdateListItems"
I am finding samples of virtually everything but what I am trying to do. I have a Custom List with 2 relevant columns: 'fk' and 'desc.' I want to delete all the rows with a specific fk. This can be...
View ArticleNew Comment on "$().SPServices.SPFilterDropdown"
The SPServices has been such an invaluable help! Thank you so much. I am finding that there is a special case when I am trying to apply the SPFilterDropDown. The documentation states that it supports...
View ArticleNew Post: GetListItems - Recurring Events - DateRangesOverlap
HI every one. This post really helped me out ey. I have a few or one problem. on callback(events) I get an error, Uncaught TypeError: boolean is not a function Been cracking my head here please help...
View ArticleNew Post: GetListItems Recursive - SubFolders
Hi, I'm looking for a little help before I pull out the last two hairs on my head. All I want to accomplish is to get the results of all items in a list that have the name Acura in the Program column....
View ArticleNew Post: GetListItems No Document Records Returned
Hi All, I'm trying to get the document records from a document library. The problem is, only the doc set records (folders) are returned. Here's my code:function getDocItems(srcUrl,listName) { var...
View ArticleNew Comment on "GetListItems"
Hi all, I need to pass an argument of type text (input type) within the CamlQuery to thereby limit this argument only items. Someone has done? know how it could happen?. Thank you very much for the...
View ArticleNew Post: GetListItems No Document Records Returned
What the value if your 'myQuery' variable? Are you filtering on folders only?Also, do you have any files under the root of the document library? Remember that in order to get files inside all folders...
View ArticleNew Post: GetListItems Recursive - SubFolders
Do you get anything back if you remove Folder from CAMLQueryOptions?I seem to remember some trouble with using it along with recursive. -- Paul T.-- Sent from Mobile
View ArticleNew Post: GetListItems No Document Records Returned
Check the docs for GetListItems. You need <ViewAttributes Scope="Recursive" />. So: CAMLQueryOptions: "<QueryOptions><ViewAttributes Scope='Recursive' /></QueryOptions>"M.
View ArticleNew Post: GetListItems Recursive - SubFolders
Yes, I think you just want this: CAMLQueryOptions: "<QueryOptions><ViewAttributes Scope='RecursiveAll' /></QueryOptions>",While IncludeMandatoryColumns is appealing, I've never seen...
View ArticleNew Post: GetListItems Recursive - SubFolders
Thanks for the help Paul. I removed the Folder from the QueryOptions, and I'm still displaying 0 items.
View ArticleNew Post: GetListItems Recursive - SubFolders
Hi M. I simplified by CAMLQueryOptions like you suggested. Unfortunately, I'm still displaying 0 items. Here is a new update of my code. Thanks for all your help.function tryAgain7(){ filePath =...
View ArticleNew Post: GetListItems Recursive - SubFolders
My suggestion would be to back off on your filtering and ViewFields so that you can retrieve some items, then add the filtering back in. Also, have you looked at the traffic in Firebug or Fiddler? It...
View ArticleNew Post: GetListItems Recursive - SubFolders
Thanks M. I just opened Fiddler and took a look at the results. You right, I was getting an error. It appears my list is exceeding the 5,000 record threshold. I tried the script on another list that...
View ArticleNew Post: GetListItems Recursive - SubFolders
Well, at least you know what the problem is now. M.
View Article