New Post: Javascript pass variable to filter webpart
You'd need to build the filtering yourself in jQuery. There are several examples here on Codeplex. One that I've used in the past (but was built for SharePoint 2007) is jvossers' SharePoint...
View ArticleNew Comment on "$().SPServices.SPLookupAddNew"
This is failing for me on the new docset form. It works everywhere else. I get the debug message stating that the column does not appear to be a lookup (even though it works when I edit an existing...
View ArticleNew Post: SPServices in SharePoint Hosted App?
Has anyone managed to get the SPServices library to run inside an app page. I have tried getlistitems and found no results returned. I can achieve results with javascript CSOM within the app.
View ArticleNew Post: Javascript pass variable to filter webpart
Thanks! I wouldn't need the users to be able to filter like in your example above this could be done once on page load. There is no way you know of interacting with a filter web part using javascript?...
View ArticleNew Post: Strange behavior with some methods and getting 'childColumnStatic'
Hello, I am having a similar issue with CascadeDropDown. Already tried 2 or 3 solution proposed on this and others posts with to no success. My case is even weird the cascade dropdown Works in 50% of...
View ArticleNew Post: Javascript pass variable to filter webpart
I'm assuming that you're on SharePoint 2010. The Filter Web Parts tend to do postbacks to send values, so probably not what you're looking for. You sort of lost me with the whole GET var thing. M.
View ArticleNew Post: Trouble Getting List Items
I am having trouble getting my contents of the list to populate into a HTML table. I have tried more than one list - I am thinking it could be a server issue on my end, but I need to know - here is the...
View ArticleNew Post: SPRedirectWithID not redirecting in IE10
I have the following on a custom new form:$().SPServices.SPRedirectWithID({ redirectUrl: "EditForm.aspx", qsParamName: "ID" }); When I go to the custom new form in the latest Chrome, it will redirect...
View ArticleNew Post: SPUpdateMultipleListItems Item limit
I have had to update large amounts of data in a 'batch' way and did so by writing my own function that uses the UpdateListItem operation. I'm my case, I found that doing 100 at a time was a good number...
View ArticleNew Post: Is there plans to make SPXmlToJson compatiable with Sharepoint 2013?
If I understand SPXmlToJson it works by taking the XML from the WebServices response and converting it to JSON. Since I think Microsoft has not changed the WebServices interface in sp2013 (they bounced...
View ArticleNew Post: SPRedirectWithID not redirecting in IE10
What version of SharePoint are you using? I haven't tested much in IE10, so it could be that. M.
View ArticleNew Post: Is there plans to make SPXmlToJson compatiable with Sharepoint 2013?
BenJamN: Paul is right. The XML returned from the Web Services in 2013 is the same as that returned in prior versions. If you can let us kniow what isn't working for you, I'm sure we can help you to a...
View ArticleNew Post: SPUpdateMultipleListItems Item limit
Paul: It sounds like you approach might be an improvement over my brute force approach. I'd be interested in seeing your function if you can dig it up. M.
View ArticleNew Post: What Datatype is the Mapping Variable in SPServices?
BenJamN: If I understand your question, you can set a var to to mappings that you want. something like:var myMap = {ows_LinkFilename: { mappedName: "Filename", objectType: "Text" }; M.
View ArticleNew Post: What Datatype is the Mapping Variable in SPServices?
p.s. In JavaScript all vars are objects. JavaScript is not a strictly-typed language. M.
View ArticleNew Post: SPServices in SharePoint Hosted App?
I have tried 3 scenarios (and combinations). I can get jquery/SPServices recognised, but I can't get a query on lists to work (refer to last code quoted at bottom of this post). I can get simple jquery...
View ArticleNew Post: SPCascadeDropdowns for mutiple cascading
Hi, I am using SPCascadeDropdowns to cascade dropdown items in the list. Is it possible to have multiple parent columns in the method? Based on DDLA and DDLB, I can get the value of DDLC? What I want:...
View ArticleCreated Unassigned: Multiple Cascade Dropdowns incorrectly update list items...
I have a page with three dropdowns, Account, Contact and Location. When a user selects an account the contact and location list are updated to only show items already linked to the selected account (so...
View Article