New Post: SPArrangeChoices With Custom Form Not Working
If the custom form isn't in the list context (either /Lists/listname or /listname for a Document Library) then the function won't work. You'll need to provide the listname in the options.M.
View ArticleNew Post: AddUserToGroups\Remove with owner credentials
You're not going to be able to get around the permissions by using the Web Services; they always respect the permissions settings. In other words, the user is always themself, and there is no elevating...
View ArticleNew Post: UpdateListItems Error
I'm glad you were able to repro. During your upgrade, you can replace the completfunc: null reference and use$.noop instead. That should allow SPServices to fire without error. I'll ping Marc on the...
View ArticleCreated Issue: UpdateListItems Error [10112]
From: http://spservices.codeplex.com/discussions/428254The problem from what I've found looks to be a bug in SPServices 0.7.2. I've found this on line 1206:opt.completefunc(cachedXML, status); // When...
View ArticleNew Post: UpdateListItems Error
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Comment on "$().SPServices.SPRequireUnique"
how do I implement this using a dropdown list which is actually a lookup column?
View ArticleNew Comment on "$().SPServices.SPCascadeDropdowns"
This solution works fine! One thing I would like to know: Is it possible to show only distinct values in the ChildColumn? - I think about using completefunc to filter out the redundant entries. But I...
View ArticleNew Post: global variables
In general, my usual approach of using global variables has failed. Some work, some don't. Various experiments suggest a problem with JavaScript closures, a subject with which I am too unfamiliar (but...
View ArticleCreated Feature: Enhance SPRequireUnique to Work with Dropdowns [10113]
SPRequireUnique only works with Single line of text column, but could be enhanced to work with other column types. Let me know what other column types you'd like to see supported.
View ArticleNew Post: Radio Buttons are not displaying horizontally on custom aspx page..
I have a custom aspx page in SharePoint 2010 that has one choice column set up as radio buttons and I would like to use the SPArrangeChoices function to position them horizontally. I have placed the...
View ArticleCreated Issue: Having problems using CreateWeb [10114]
Hi, I'm trying to use CreateWeb to create a sub site. Whatever I try I getting the error message:"Value cannot be null. Parameter name url"I've tried it with and without the webURL parameter. I've...
View ArticleNew Post: Radio Buttons are not displaying horizontally on custom aspx page..
What is the HTML that is generated? It has to match the OOTB forms exactly for this to work. Can you post that? Cheers, Matthew
View ArticleNew Post: SPCascadeDropdowns - reset field after filtering
I have a page with 4 drop down that cascade off of one another.If a user selects a blank value for any of the drop downs I would like to reload all of the values for the drop downs below it.Example:...
View ArticleNew Post: Multiple Multi Select Box issue
Thanks for all the help trying to get this to work...I didn't end up getting this to work no matter how I tried to set it up. I even tried a basic set up. As long as I used multi select boxes as the...
View ArticleNew Comment on "$().SPServices.SPRequireUnique"
Good article. how do i implement same validation for combination of fields in list? Siva Kumar
View ArticleNew Post: SPServices.SPRequireUnique on list column with empty cells?
how do i implement "SPRequireUnique" validation for combination of fields in list? Siva
View ArticleNew Post: SPServices.SPRequireUnique on list column with empty cells?
Siva:Quick answer: you can't. The function only works for a single column.M.
View ArticleNew Post: SPCascadeDropdowns - reset field after filtering
Not with the function as it is written. It always enforces the relationships between the values.M.
View ArticleNew Post: Building a button to command a SPS script
Hi, have a small script with jquery and SPServices and it works very well inside a html-Webpart. the problem is that it always starts automatically and I would like to start it over some link or...
View ArticleNew Post: Building a button to command a SPS script
I would try instead of wrapping the jQuery in $(function() { [your function] }); Try function giviitaname() { [your function] }And in the button:onclick ="giviitaname()"
View Article