Updated Release: SPServices 2013.01 (May 07, 2013)
Note that with this release, I'm changing the version numbering scheme. The prior release was 0.7.2 and this release is 2013.01.See all changes and resolved issues in the Issue Tracker here.Link to...
View ArticleNew Comment on "$().SPServices.SPConvertDateToISO"
Just noticed this method... Nice.. I included a similar one in SPWidgets.
View ArticleNew Post: Global complex to simple lookups fields from the master page.
Hi folks, I wanted to share this snippet. It could be placed directly in the master page in the page head but I prefer to keep my javascript customizations in a separate JS file, which prevent the need...
View ArticleNew Post: How do I pass a var inside SPServices
I've got a post for that. ;+)http://sympmarc.com/2010/10/08/using-jquery-to-prefill-and-disable-required-column-in-a-sharepoint-form/ M.
View ArticleReleased: SPServices 2013.01 (May 07, 2013)
Note that with this release, I'm changing the version numbering scheme. The prior release was 0.7.2 and this release is 2013.01. See all changes and resolved issues in the Issue Tracker here. Link to...
View ArticleUpdated Release: SPServices 2013.01 (May 07, 2013)
Note that with this release, I'm changing the version numbering scheme. The prior release was 0.7.2 and this release is 2013.01.See all changes and resolved issues in the Issue Tracker here.Link to...
View ArticleNew Comment on "$().SPServices.SPCascadeDropdowns"
Question: Can I use a html form web part instead of using the SP Designer. I added my jquery/SPServices reference and added the SPCascadeDropdowns call. I don't get the cascading effect. Any pointers?
View ArticleNew Post: SPServices 2013.01 - Test
Thinking it could be the other references that may cause the issue, I decided to try only these two. Same result.... : (<script language="javascript" src="/_layouts/jquery/jquery-1.8.3.min.js"...
View ArticleNew Post: SPServices 2013.01 - Test
I still can't see anything that would throw an error. Check in the IE Developer Toolbar in the console to see if there are errors. Usually Firefox won't even load the script file if there is an error. M.
View ArticleNew Post: SPServices 2013.01 - Test
Thanks Marc. Looking at the page load in IE Dev Toolbar, I do see a reference to JQuery-1.7.1.min.js somewhere. I believe this came from a custom Masterpage that a vendor had done for us. Could their...
View ArticleNew Comment on "$().SPServices.SPCascadeDropdowns"
IE10/Chrome 26.0.1410.64 m reports a bug: SCRIPT5007: Unable to get property 'split' of undefined or null reference jquery.SPServices-0.7.2.js, line 1702 character 3 using Sharepoint 2010
View ArticleNew Post: SPServices 2013.01 - Test
Okay. Did some more testings. I use the below code (in CEWP) on a clean SP2010 machine. The result is the same... blank screen. If I change SPServices bck to .7.2, it works. You can try it with the...
View ArticleNew Post: SPServices / jQuery ID Selectors in SP 2013, SPAutoComplete
Hey all, First, Marc, I'm a long-time fan of your work - thanks so much for all of your amazing work not only on SPServices but with the SharePoint community at large. Tried searching many places for...
View ArticleNew Post: Global complex to simple lookups fields from the master page.
Good tip. Thanks for sharing. _____PaulSent from mobile device.
View ArticleNew Post: Global complex to simple lookups fields from the master page.
+1 I'm going to add this into the docs as an example. M.
View ArticleNew Post: SPServices 2013.01 - Test
Hmm. This works for me in my Office365 tenant that's still running SharePoint 2010. It's basically the same as your code with different references to the libraries and my account info. I did notice...
View ArticleNew Post: Global complex to simple lookups fields from the master page.
BTW, I haven't tested it, but I think you can simplify this to:$(document).ready(function (){ $('.ms-lookuptypeintextbox').each(function() { $().SPServices.SPComplexToSimpleDropdown({ columnName:...
View ArticleUpdated Wiki: $().SPServices.SPComplexToSimpleDropdown
Function$().SPServices.SPComplexToSimpleDropdownCertification FunctionalityThe SPComplexToSimpleDropdown function lets you convert a "complex" dropdown rendered by SharePoint in a form to a "simple"...
View ArticleNew Post: Global complex to simple lookups fields from the master page.
Hi Marc,Yes you may, however, I’m not sure if it is as efficient if there are no dropdowns selected. I used the brute force approach to short-circuit the library calls. I’d have to single step through...
View ArticleNew Post: Global complex to simple lookups fields from the master page.
If the selector doesn't return any elements, the .each() won't happen, so it won't loop. I'm not positive that your way isn't slightly more efficient, but it's not necessary. I generally do a variable...
View Article