New Post: Issue filtering with CascadeDropdowns
First off, semi-colons. Always end your lines with semi-colons. Otherwise the browser does a best guess, and believe me, you'll have problems. Are you sure that $("select[title='Department']...
View ArticleNew Post: Issue filtering with CascadeDropdowns
Hello M. It's SP 2007 and I am certain that$("select[title='Department'] option:selected").text() is getting the value I need. I can change the department drop down and the variable changes each time...
View ArticleNew Post: Issue filtering with CascadeDropdowns
Look on the Net tab, XHR sub-tab, and see if the request is erroring out. M.
View ArticleNew Post: Issue filtering with CascadeDropdowns
No errors in post through XHR; I select department, pillar, and then Measure drop down just stays with (None). Each time I see POST Lists.asmx 200 OK.
View ArticleNew Post: Issue filtering with CascadeDropdowns
Do you see the values you'd expect coming back in the XML tab? The dquery you have in the first completefunc isn't going to do anything. In fact, you don't need it at all. That's the whole point of the...
View ArticleNew Post: Issue filtering with CascadeDropdowns
I completely understand M. However, the problem here is that "Measures" is dependent on Pillar and Department. If I run this normally; it works fine -- except that Measures ends up with every measure...
View ArticleNew Post: Issue filtering with CascadeDropdowns
OK, the function won't do what you're looking for. The CAMLQuery is only applied when you first make the call and things are set up. It will have no effect when you make selections. M.
View ArticleNew Post: Issue filtering with CascadeDropdowns
OYE; I was afraid of that; it truly only handles 1-1 relationship. Do you have any recommendations on what I could do/look at? All I need in Measures is for it to filter "AND" by two columns; not just...
View ArticleNew Post: Issue filtering with CascadeDropdowns
I've never tried to generalize the function to do what you want. I've always worried that there was too much possible variation. You could certainly clone the function and adapt it to your needs. If...
View ArticleCommented Issue: ResolvePrincipals with addToUserInfoList=true requires...
The following fails at moment.```javascript$().SPServices({ operation: "ResolvePrincipals", principalKeys: '<string>SPIRIT\\testuser99</string>', addToUserInfoList: true})```with a...
View ArticleReopened Issue: ResolvePrincipals with addToUserInfoList=true requires...
The following fails at moment.```javascript$().SPServices({ operation: "ResolvePrincipals", principalKeys: '<string>SPIRIT\\testuser99</string>', addToUserInfoList: true})```with a...
View ArticleEdited Issue: ResolvePrincipals with addToUserInfoList=true requires...
The following fails at moment.```javascript$().SPServices({ operation: "ResolvePrincipals", principalKeys: '<string>SPIRIT\\testuser99</string>', addToUserInfoList: true})```with a...
View ArticleCommented Issue: ResolvePrincipals with addToUserInfoList=true requires...
The following fails at moment.```javascript$().SPServices({ operation: "ResolvePrincipals", principalKeys: '<string>SPIRIT\\testuser99</string>', addToUserInfoList: true})```with a...
View ArticleNew Post: Create New Document Set using SPServices
I've been trying to create a Document Set using SP Services. The code executes without error, creates a record, and displays Document Set as the content type. However, it displays a folder instead of...
View ArticleNew Post: how can one get the specific reasons why a given person has been...
Dear SpServices Users -- Please help. I am new to SpServices but I do know a little jQuery, etc. I am wondering... ...how can one get the specific reasons why a given person has been shown the access...
View ArticleNew Post: How to call UpdateListItems from Link
I have a custom DVWP with a list of items using an aggregate data source. In the XSLT I have a link to delete child items. My requirement is to provide one click delete. I have a solution in place...
View ArticleNew Post: Using SPAutocomplete on a Multiple Item Form
I'm currently using SPAutocomplete to lookup data from a list in a sibling site, and it's working great, except that I'm using the SharePoint Designer "Multiple Item Form" DVWP. The box with the lookup...
View ArticleNew Post: Using SPAutocomplete on a Multiple Item Form
I've never tried it with multiple items like that, but the selector is probably only "seeing" the first one. As you know, the function uses the columnName to hook into the form. I'm not sure what the...
View ArticleNew Post: Sort Cascading Drop Down Parent Column by ID
Marc - Love your SPServices library! Thanks. (and I sat in on a number of your seminars at SPTechCon SF 2014 - awesome!) If i want my Parent column to sort by ID instead of alphabetically, do i use...
View ArticleNew Post: How to call UpdateListItems from Link
To make the code cleaner and more efficient, you shouldn't create a function and click handler for every item. What you should do is what you are already thinking; Add attributes to the <a> tag...
View Article