Updated Wiki: $().SPServices.SPFindMMSPicker
Function$().SPServices.SPFindMMSPickerCertification FunctionalityThe SPFindMMSPicker function helps you find an MMS Picker's values.Syntax$().SPServices.SPFindMMSPicker({ MMSDisplayName:...
View ArticleNew Post: How do I pass a var inside SPServices
$(document).ready(function() { SetStatusVariable(); DisableAllSPFields(); DisableOKButton(); // query for the current user. $().SPServices({ operation: "GetGroupCollectionFromUser", userLoginName:...
View ArticleNew Post: How do I pass a var inside SPServices
Art: What you're trying to do should work. I think you've got a scoping issue with your status variable. If you define it inside the function, then it won't be available outside the function. M.
View ArticleNew Post: GetAllSubWebCollection on SharePoint o365
I tried to run below code at SharePoint online, and I have full control over the site collection, $(document).ready(function() { $().SPServices({ operation: "GetAllSubWebCollection", completefunc:...
View ArticleNew Post: GetAllSubWebCollection on SharePoint o365
Have you checked the script references to be sure they are good? M.
View ArticleNew Post: GetAllSubWebCollection on SharePoint o365
Thanks, Marc. Just compared two script libraries. The working one has jQuery 1.7.2 whereas the other has jQuery 1.9.1. Changed version to 1.7.2 , and now works fine. Really loves the SPServices. Thanks...
View ArticleNew Post: How do I pass a var inside SPServices
So the issue was, DisableAllSPFields(); Before SP Services. Thus, create a global var say "x" then x=SetStatusVariable(); Then if (($(xData.responseXML).find("Group[Name='ROMS Members']").length ==...
View ArticleNew Post: How do I pass a var inside SPServices
I found this as a benefit, If you disable a field, you may want to enable before submitting information! function PreSaveAction() { $("nobr").closest("tr").find("*").removeAttr("disabled"); return true; }
View ArticleNew Post: GetAllSubWebCollection on SharePoint o365
As noted on the home page, jQuery 1.9.0 and 1.9.1 don't work with SPServices due to their bugs. In person is always fun! M.
View ArticleNew Post: SPGetCurrentUser not returning user information
Hi All, I'm having a similar but strange version of this problem. I am using Sharepoint Foundation 2013 with SPServices 0.7.2 and JQuery 1.8.3-min. I have confirmed both are loading as mentioned in the...
View ArticleNew Post: Crazy Question...
I am looking to do what I will refer to as collision detection within a list. The goal here is to look at identical submissions based on several fields. Right now I am duplicating these fields in...
View ArticleNew Post: Crazy Question...
Marc, Yes I can and thanks for the quick reply. I cannot get into too much detail as the project is very sensitive but here it is: When a end user submits a new form there are certain fields within...
View ArticleNew Post: Crazy Question...
You can nest calls however you need to. Each one os simply a request for some data. Yuo can query any list, including the current one. Also keep in mind that UpdateListItems returns a copy of the item...
View ArticleNew Post: New 2013.01 release cannot co-exist with 0.7 release
The couple problems I've had over the past couple days were suggested by Marc to be due to conflicts with existing code. I have just proven that conclusively. Because I isolate my code with Crockford's...
View ArticleNew Post: New 2013.01 release cannot co-exist with 0.7 release
My rule is to never load more than one version of any library in a page. I find that even two versions of jQuery can stomp on each other. A.
View ArticleUpdated Wiki: $().SPServices.SPFindMMSPicker
Function$().SPServices.SPFindMMSPickerCertification FunctionalityThe SPFindMMSPicker function helps you find an Managed Metadata Service (MMS) Picker's values.Syntax$().SPServices.SPFindMMSPicker({...
View ArticleUpdated Wiki: $().SPServices.SPFindMMSPicker
Function$().SPServices.SPFindMMSPickerCertification FunctionalityThe SPFindMMSPicker function helps you find an Managed Metadata Service (MMS) Picker's values.Syntax$().SPServices.SPFindMMSPicker({...
View ArticleNew Post: Date Columns returning all undefined
Rather than referencing the view, I just specify the CAMLViewFields or CAMLRowLimit or something. As soon as you specify one of those values, it overrides the default view. In other words, there's zero...
View Article