New Post: Odd: Can't add columns to a list
Great! I'll get it posted. As you progress along (assuming you may enhance this as you go) we can always do follow up posts. M.
View ArticleNew Post: Add Column in a list programmatically?
How about adding a Site Column to a list using SPServices? I am trying to add a Lookup Column, which I made as a Site Column referencing a list in the root site, to a lists in subsites. I have tried...
View ArticleNew Post: Paging Through Lists
janeshh wrote: Hi demaximus, We found some major performance issues with the above code, unfortunatley some logical error and its calling the server many times in a loop(Thanks to fiddler). Hope you...
View ArticleNew Post: SpService.SpAutocomplete() doesnt work for 5000+ values & Scroll...
Hi, I am using spservice.spautocomplete function to provide auto suggest functionality for my sharepoint textbox. My Source list is having 5000+ data.The functionality works & provides search...
View ArticleNew Post: AddAttachment
Matthew,In your script, you commented "for brevity, left out code that builds csvData..." I'm guessing you're building a string object and then using the "Base64.encode" function to convert that to a...
View ArticleNew Post: SPUpdateMultipleListItems Unable to update a specific list
I have a problem with a specific list not updating the items. I am able to run getlistitems on the same list. I have tried guid and name for listname as it has a space in it. This code below works on...
View ArticleNew Post: AddAttachment
I'm with you on the iFrames hack. There is talk right now about knocking this functionality out of the park. I have not done so to date, but I know it's being worked on. Once I do it or know of someone...
View ArticleNew Post: GetUserProfileByName
Hi, i am having a problem with GetUserProfileByName. ill explain what i am actually trying to accomplish and then ill explain my problem. i have an input field that on keydown it searches profile...
View ArticleUpdated Wiki: SiteDataGetWeb
Function$().SPServicesWeb ServiceSiteDataOperationGetWeb -> Called as SiteDataGetWebExample This is an example fromJburnish in the Discussions.$().SPServices({ operation: "SiteDataGetWeb",...
View ArticleNew Post: SpService.SpAutocomplete() doesnt work for 5000+ values & Scroll...
The 5000 item limit is a list throtting setting, I believe on the farm level. Using CAMLRowLimit won't get you around that. However, I would question why you'd ever want to bring back that many items,...
View ArticleNew Post: SPUpdateMultipleListItems Unable to update a specific list
Probably the best next step would be to look at the network traffic with either Firebug or Fiddler to see what issue might be occurring. Success only indicates that the .ajax() call got a response from...
View ArticleNew Post: SPUpdateMultipleListItems Unable to update a specific list
I tried to output the error. But I could not glean anything useful out of the output-error. I will try fiddler and see what that tells me.Thank you,Frank Cardillo404-652-4030From: sympmarc [email...
View ArticleNew Post: GetUserProfileByName
There's no operation in the User Profile Service that allows you to retrieve multiple users based on part of their name. You can get colleagues and such, but only for one user. You might want to try...
View ArticleNew Post: SPUpdateMultipleListItems Unable to update a specific list
You can also alert xData.responseText, but sometimes it's hard to read in an alert box. M.
View ArticleNew Post: GetUserProfileByName
thanks for the quick response. i had a feeling GetUserProfileByName wasn't going to work but i tried it anyways. let me ask you something. can i do live search on SharePoint 2010? cause that's what i...
View ArticleNew Post: GetUserProfileByName
If you're working in a list form, then you probably should be using a Person or Group column. Yes, you can call the Search Web Service with SPServices just like any other. Check the docs. M.
View ArticleNew Post: SPUpdateMultipleListItems Unable to update a specific list
Does your list contain folders? Do the folders have different permissions than the list itself? I will explain my madness. I have a list with folders. All users had read permission at the top level of...
View ArticleNew Post: SPUpdateMultipleListItems Unable to update a specific list
Goeff is right. All SPUpdateMultipleListItems does is first call GetListItems and then UpdateListItems on that set of items. Each user will only retrieve the items they are allowed to read in the first...
View ArticleNew Post: SPUpdateMultipleListItems Unable to update a specific list
I started looking at permissions as well. At the beginning of my tests it did have custom security. I am now inheriting from the site. There are no folders. It’s a Simple configuration list....
View Article