New Post: SPServices.SPCascadeDropdowns
Hi. I've been using SPServices.SPCascadeDropdowns successfully for a while now in various projects. Normally single parent-child and the odd parent-child-grandchild. In this issue, I'm working with a...
View ArticleNew Post: Limitations of SPServices
SPGetCurrentUser does a "screen scrape" of the /_layouts/userdisp.aspx page, as described in the docs. If a user hasn't "touched" the Site Collection, they may not be in the User Information List which...
View ArticleNew Post: SPServices as a ListFilter
Have you looked at SPCascadeDropdown? You'll need to rearrange your data a bit (to normalize it), but you should be good to go. However, it sounds like you want to do this on a view, not a form?...
View ArticleNew Post: Upload Document to Sharepoint list
There's no function in SPServices to deal with attachment uploads. Does your customized form not include the attachment logic? M.
View ArticleNew Post: SPServices as a ListFilter
I did look at the SPCascadeDropdown, and yes we are trying to use this for a view so that is why I wasn't sure if it was possible or not.
View ArticleNew Post: SPServices as a ListFilter
Ok, so the answer is "no". I tend to use a DVWP for something like what you describe or jQuery. SPCascadeDropdowns can work reliably on the forms because the structures, while overly complex, are...
View ArticleNew Post: GetListItems & Accordions
I have just used a Content Editor Web Part. It looks up to a custom list named FAQ. It seems to be a little flicker, adding the <DOCTYPE> attribute seems to mitigate it a little. The accordion...
View ArticleNew Post: Expanding Calendar Title fields
Hi M. I'm a newbie and not sure if I'm on the right track or not, but i'm having a difficult time identifying the div tag on the CalendarV4.CSS that is associated with the title for the recurring...
View ArticleNew Post: Expanding Calendar Title fields
You should look at the elements that you want to change using the Internet Explorer Developer Tools or Firebug. If you try to look at the CSS first, you're not going to be able to figure out what you...
View ArticleNew Post: SPUpdateMultipleListItems Item limit
Hello, I need to update multiple list items to kick the workflow on all the items in a list. I am using SPUpdateMultipleListItems and it works fine as long as list has less than 500 items. When i try...
View ArticleNew Post: SPUpdateMultipleListItems Item limit
I haven't ever tried to test with that many items, frankly. I didn't build the function to be efficient at that level. You could take a look at how the function works and probably come up with...
View ArticleNew Post: SPUpdateMultipleListItems Item limit
Hi Marc, Thank you very much for your response. I will have a look if I can find some way around otherwise I will have to break my query to retrive less than 500 items at a time.
View ArticleNew Post: Pass variable into SPXmlToJson function
How would I pass in the mapping as a variable object? Not to familiar with JSON/javascript arrary columns: function GetlistOps(myList, myList, myMap) { myJson = null; $().SPServices({ operation:...
View ArticleNew Post: Is there plans to make SPXmlToJson compatiable with Sharepoint 2013?
Is there plans to make SPXmlToJson compatiable with Sharepoint 2013?
View ArticleNew Post: SharePoint 2010 - Query to lists having over 5,000 items
Nice EnableThrottling Property. Nice Tip!
View ArticleNew Post: Javascript pass variable to filter webpart
Hi, This is not a SPServices question specifically but more general - SPServices might be used to help me what I need to do. I already use SPServices heavily throughout my site. I need to be able to...
View ArticleNew Post: Javascript pass variable to filter webpart
Michael: Where do you want to pass the variable from? Another page? M.
View ArticleNew Post: Javascript pass variable to filter webpart
Hi, No, what I am looking to do is upon first load of the site present the user with a drop down choice and save this choice in a list beside the username. When the user visits the site in future I...
View ArticleNew Post: Javascript pass variable to filter webpart
I think I'd probably use a cookie rather than saving the value into a list, just for performance reasons. But if you do write it into a list, just use GetListItems to read the value from the list on...
View ArticleNew Post: Javascript pass variable to filter webpart
Any ideas on how to send a JS variable to a webpart filter? Not sure if there is a JS call on the SP side that I can tap into?
View Article