New Post: SPCascadeDropDown doesn't show child on parent selection
Hello, I have a problem with the following code.The parent list is filled, but when I select an item, it displays nothing in the child list.I Use Sharepoint 2010, with the last stable versions of...
View ArticleNew Post: SPCascadeDropDown doesn't show child on parent selection
I don't see anything obviously wrong. Are you getting any error popup (from SPServices' debug mode) or in the console in the browser?You do have a parameter which won't do anything: listName:...
View ArticleNew Post: Setting CAMLQuery for SPServices GetListItems within Sharepoint...
From within SharePoint Forms Designer I'm trying to populate some text boxes based upon a drop down list. I'm trying to use jQuery and SPServices GetListItems to accomplish this. I'm already using the...
View ArticleNew Post: SPCascadeDropDown doesn't show child on parent selection
Hello, thanks for your answer,I have no error message (debug mode, and console).I removed the listName parameter, the result is the same.I forgot to tell that I use Internet Explorer 8.What's the...
View ArticleNew Post: SPCascadeDropDown doesn't show child on parent selection
If you know Fiddler, take a look at the results returned fro the calls to Lists.asmx. You should be able to see the data coming back and whether it contains what you'd expect.The other thing to check...
View ArticleNew Post: Setting CAMLQuery for SPServices GetListItems within Sharepoint...
I'm not spotting it, but obviously the browser thinks you're missing a semi-colon. There ought to be a line number associated with the error in the console, which should show you roughly where.M.
View ArticleNew Post: SPCascadeDropDown doesn't show child on parent selection
With fiddler, I found that the relationship list name I used was not correct.I thought I had to use the static name of the list (that we can find in the URL), but finally it seems that it's the display...
View ArticleNew Post: SPCascadeDropDown doesn't show child on parent selection
Would it be complicated to have a new boolean parameter, let's say "NonHierarchical",and if it is true, the already selected children are not reinitialised when we select a different parent ?I'm quite...
View ArticleNew Post: Setting CAMLQuery for SPServices GetListItems within Sharepoint...
"<FieldRef Name="Title"></FieldRef><Value Type="Text">Bob Tester</Value>"has nested double quotes. To correctly nest quoted items in this case, the easiest is..."<FieldRef...
View ArticleNew Post: Setting CAMLQuery for SPServices GetListItems within Sharepoint...
Yup, it's the quotes nesting. Sometimes this stuff is hard to spot!M.
View ArticleNew Post: SPCascadeDropDown doesn't show child on parent selection
It would indeed be complicated. If you think about it, there are some edge conditions which might get messy. I can add it to the list for enhancements, but it won't happen too soon.M.
View ArticleNew Post: Setting CAMLQuery for SPServices GetListItems within Sharepoint...
My original code and post has single quotes in the string assignment (re-pasted code snippet below). What I was trying to explain in my 2nd post is running the debugger and looking at the generated...
View ArticleCreated Feature: SPCascadeDropDown - Allow Non-Hierarchical Selections in...
From: http://spservices.codeplex.com/discussions/404608Would it be complicated to have a new boolean parameter, let's say "NonHierarchical",and if it is true, the already selected children are not...
View ArticleNew Post: SPCascadeDropDown doesn't show child on parent selection
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Setting CAMLQuery for SPServices GetListItems within Sharepoint...
Make sure that none of your quotes are "curly quotes". You often end up with those when you copy code from a blog post or other Web page. What you've pasted directly above looks right, but try simply...
View ArticleNew Post: Setting CAMLQuery for SPServices GetListItems within Sharepoint...
Nice catch @gkoliver!It's interesting that the original post has single quotes. Was it edited? If not, then the problem may be something else altogether. Cheers, Matthew
View ArticleNew Post: Setting CAMLQuery for SPServices GetListItems within Sharepoint...
Setting my variable in one long string (code snippet below) does not make a difference and I receive the same error. var test = "<Query><Where><Eq><FieldRef Name='Title'...
View ArticleNew Post: Setting CAMLQuery for SPServices GetListItems within Sharepoint...
I honestly think it has something to do with your .live() call or the usage of .SPFilterNode(). There were some changes to jQuery and as a result SPServices. The usage of .live() was deprecated in...
View ArticleNew Post: Setting CAMLQuery for SPServices GetListItems within Sharepoint...
I'm using... .live() call seems to fire ok but I can change it.Also If I remove the $().SPServices code and just have the string assignment I still get the error.I know that the $().SPServices...
View ArticleNew Post: Setting CAMLQuery for SPServices GetListItems within Sharepoint...
I've not used SPDesigner with SPServices so that is a mystery to me. I wonder if you were to escape the quotes around the field Name and Type values, would that help SPDesigner interpret things...
View Article