New Post: GetListItems Recursive - SubFolders
And it not an easy problem to resolve/get around... :)_________Paul T
View ArticleNew Post: GetListItems No Document Records Returned
That worked perfectly. Many thanks to you both! --Tim
View ArticleNew Post: Using SPUpdateMultipleListItems error updating more than 200 items...
I have a list that is 1600+. My requirement is to update a column in items that have changed recently. If my query returns more 400 items - it only updates 200 and returns an error of 'Request timed...
View ArticleNew Post: Using SPUpdateMultipleListItems error updating more than 200 items...
This doesn't surprise me. The SPUpdateMultipleListItems function issues the updates as one large batch. When n is large, this can fail. I'd suggest cloning the function so that you can break out the...
View ArticleNew Post: Using SPUpdateMultipleListItems error updating more than 200 items...
Marc, Thanks, I will try the cloning - what are your thoughts on the code picking up in the next function from the last to make sure the entire query is executed - I am concerned about the reliability...
View ArticleNew Post: Using SPUpdateMultipleListItems error updating more than 200 items...
You'll just want to break the requests down into smaller checks. For instance, just do ten update in each UpdateListItems. Right now it's trying to do all 200 at once. M.
View ArticleNew Post: Using SPUpdateMultipleListItems error updating more than 200 items...
Take a look at this post: https://spservices.codeplex.com/discussions/440360I posted a function that already does this. You give it an unlimited amount of updates and the function returns you a promise...
View ArticleNew Post: Issue filtering with CascadeDropdowns
First off; this works -- to an extent. I just need help figuring out what I am missing. I have (3) drop downs;DepartmentPillar Measure The issue I have is trying to get the measure drop down to show...
View ArticleNew Post: Using SPUpdateMultipleListItems error updating more than 200 items...
Paul, Thank you! That is exactly what I was thinking but lacked the skills to execute ... I am in your debt, sir! I am using your 'Black Magic' solution on a current project - it is a great example of...
View ArticleNew Post: Using SPUpdateMultipleListItems error updating more than 200 items...
I've got to get Paul's great fix into the next version of SPServices! M.
View ArticleNew Post: Using SPUpdateMultipleListItems error updating more than 200 items...
Where's the petition!
View ArticleNew Post: Using SPUpdateMultipleListItems error updating more than 200 items...
Add your $.02 here:https://spservices.codeplex.com/workitem/10168 M.
View ArticleNew Post: Using SPUpdateMultipleListItems error updating more than 200 items...
Thanks Greg... Glad I could help and awesome to know you worked with the solution from the book. :)Mark: I'll pledge my support for the change (although its a bias one :) )_________Paul T
View ArticleCommented Unassigned: SPFindMMSPicker missing from 2014.01 [10253]
I can't find the SPFindMMSPicker function in the 2014.01 release. Is that intended?Comments: I'd like to second this, It isn't in the previous version either. Please can you add it? Thanks
View ArticleNew Post: Issue filtering with CascadeDropdowns
Did some more work; got variables setup; working; doing what I need. Just won't run CAMLquery: dquery<script language="javascript" type="text/javascript"> var deptnm var query...
View ArticleNew Post: ().SPServices.SPCascadeDropdowns returns incorrect child
Hi, I have a need for two dropdowns in my pages library to work together. The user selects Category, and then a sub Category. My code in the editform.aspx is as follows:<script...
View ArticleNew Post: ().SPServices.SPCascadeDropdowns returns incorrect child
Keep in mind that you can use the list name rather than the GUID, e.g., "Announcements". You're welcome. Are you all set? M.
View ArticleNew Post: ().SPServices.SPCascadeDropdowns returns incorrect child
Yep! The name could change so the guid makes more sense in this case. Thank you again.
View ArticleNew Post: Issue filtering with CascadeDropdowns
You declared a variable called "query" (that isn't being used) early and outside of any function, then it looks like you've defined the variable "dquery" only within the scope of the complefunc...
View ArticleNew Post: Issue filtering with CascadeDropdowns
Mm; typo -- unfortunately didn't work.CAMLquery: dquery, It just doesn't do a thing; it's like it doesn't understand -- which makes no sense to me. I can sit here and change the department drop down...
View Article