Updated Wiki: $().SPServices.SPFindMMSPicker
Function$().SPServices.SPFindMMSPickerCertification FunctionalityThe SPFindMMSPicker function helps you find a Managed Metadata Service (MMS) Picker's values.Syntax$().SPServices.SPFindMMSPicker({...
View ArticleNew Post: UpdateListItems Only Updates the First Record
I'm running a script that enumerates the folders of a list. For each folder, I look up it's existing name in another list, return the new name from the second list and update the folder name to the new...
View ArticleNew Post: Programmatically show a list
I have used SPServices to create a list (every time someone reaches the page), but I can't figure out how to display that list. The code I use is contained within a CEWP on a particular page, and I...
View ArticleNew Post: Programmatically show a list
So you're creating the list on page load and then you want to display that same list? You'll need to delay trying to show it until it's been created, which I think happens asynchronously. M.
View ArticleNew Post: Programmatically show a list
But how do I even show it--my mind is a blank. I want the equivalent of adding the list as a web part.
View ArticleNew Post: Programmatically show a list
You can't add it as a Web Part if you're creating it client side, as it won't exist when the page is rendered by the server. You could call GetListItems on it after it has been created and add the...
View ArticleNew Post: Programmatically show a list
I am pre-populating it, but the whole point of the exercise is to have a standard SharePoint list view. What is working (occasionally) is to redirect the page to the SP view of the list--ie, the...
View ArticleNew Post: Programmatically show a list
You can create the list on page load, then in the completefunc, call a short script that performs a GetListItems operation and enumerates them to build your HTML on the fly, displayed in a <div>...
View ArticleNew Post: SPComplexToSimpleDropdown() function not executed when element is...
Marc, I came across this discussion while researching my issue, which was the same as the OP. However, the documentation on the page for SPComplexToSimpleDropdown states: "If specified, the...
View ArticleNew Comment on "$().SPServices.SPRedirectWithID"
Sorry bout this, I've searched and searched but I just can't find a straght forward guide on how to get this working. I've created a file in a document library that basically has the jQuery library and...
View ArticleNew Post: Programmatically show a list
Thank you for this. I'll study it, but I have to say that the point of my current project was to use a regular SharePoint list view. The client wants all the bells and whistles--all the Excel-like...
View ArticleNew Post: Those pesky quotation marks
I think you new to XML encode it because the apostrophe is being passed to the server in a SOAP message. Have you tried that?So a ' will become 'This post might help:...
View ArticleNew Post: SPServices return not working
I created a function using spservices to get the profile picture but when I alert the function it returned undefined. Please help. $(document).ready(function(){ var getUsername =...
View ArticleNew Comment on "$().SPServices.SPCascadeDropdowns"
Is there a way to properly filter the parentList? I had the impression I could use the CAMLqueryoptions for that and added: CAMLQueryOptions: ""<Query><Where><Eq><FieldRef...
View ArticleNew Post: Those pesky quotation marks
If you meant replace ' with ' , I just tried that: O&O'KeeffePM@some.org but it made no difference. [I don't know where the extra O comes from in that example, but it should read:...
View ArticleNew Post: Those pesky quotation marks
However, hard-coding the search term (ie, the email address passed in the SOAP) with ' for the apostrophe DID the trick. Thanks. I'll now figure out how to make that dynamic...
View ArticleNew Post: SPCascadeDropdowns and filter in parentList
Is there a way to properly filter the parentList? I had the impression I could use the CAMLqueryoptions for that (because the documentation says: "This option can be used to specify additional options...
View ArticleNew Post: Those pesky quotation marks
Ok... Good... you definitely need to encode XML characters... You example looks funny to me... You said you changed it to : [email removed] , but that has 1 too many "&O" ?????Anyway... good...
View ArticleNew Comment on "Lists"
I am trying to use AddDiscussionBoardItem but it is not working for me. I could use an example. Here is one of the ways I have tried: $().SPServices({ listName: "myListName", operation:...
View ArticleNew Post: AddDiscussionBoardItem but it is not working for me.
I am trying to use AddDiscussionBoardItem but it is not working for me. I could use an example. Here is one of the ways I have tried: $().SPServices({ listName: "myListName", operation:...
View Article