New Post: AddDiscussionBoardItem but it is not working for me.
If you look at the docs for that operation, you'll see: message The base64Binary content of the item to add.http://msdn.microsoft.com/en-us/library/lists.lists.adddiscussionboarditem(v=office.12).aspx...
View ArticleNew Post: SPCascadeDropdowns and filter in parentList
You want to use the "CAMLQuery" parameter for that. That is the option that allows for additional filtering on the parent list. CAMLQueryOptions is a different animal altogether.
View ArticleNew Comment on "$().SPServices.SPFindPeoplePicker"
Hi, To clear a people picker field, do this the old way: // There's no easy way to find one of these columns; we'll look for the comment with the columnName var searchText = RegExp("FieldName=\"" +...
View ArticleNew Post: SPCascadeDropdowns and filter in parentList
I already use the CAMLQuery Option, for filtering the childList (my form is basically a list of options, where your name has to be in another column to enable the option for you) CAMLQuery:...
View ArticleNew Post: SPCascadeDropdowns and filter in parentList
Nevermind... I'm so stupid. Just use $().SPServices.SPFilterDropdown in addition... :D Thanks anyways
View ArticleNew Post: Those pesky quotation marks
One last problem. I had ignored it as "not understandable," but then I think I discovered the problem but certainly not a solution. My list of email addresses included a perfectly valid one that always...
View ArticleNew Post: Those pesky quotation marks
I stared at what I had written for a bit, then realized, "Well, I've got the responseText, right?" So I eventually came up with this. I had really liked my .final() clause, because it seemed to...
View ArticleNew Post: Those pesky quotation marks
I guess I'm not following... could you post the xml returned from Sharepoint call to the GetUserLoginFromEmail operation? The quotes should be returned encoded, so you should be able to use the value...
View ArticleNew Post: Those pesky quotation marks
Here's the core routine:var promiseEmail = $().SPServices({ operation: "GetUserLoginFromEmail", emailXml: "<Users><User Email='" + whatever + "' /></Users>" });...
View ArticleNew Post: Those pesky quotation marks
Thanks Mike for posting... this is very strange to me and I know realize that I guess it is possible for SharePoint to return invalid SOAP messages... those quotes should have been encoded. It sounds...
View ArticleNew Post: SP group contains AD Group
I have AD Groups added to SP groups instead of individual users.How do i check if the current user is part of this SP Group contains AD Group using SPServices.
View ArticleNew Post: SP group contains AD Group
Sadly, you can't. See: http://sympmarc.com/2011/02/16/active-directory-groups-vs-sharepoint-groups-for-user-management-a-dilemma/ M.
View ArticleNew Post: SPCascadeDropdowns with multiple parent columns
Hi Marc, I am stuck in a project and need to get it done soon. Have already lost so much time I have followed your work for such a long time and have implemented the solutions you post. Thank you for...
View ArticleNew Post: SPCascadeDropdowns with multiple parent columns
Charan: If the third dropdown depends on only the value of the 2nd, then SPCascadeDropdowns will work for you. If it's a combination of 1 and 2 that drives 3, then it won't. Can you post some example...
View ArticleNew Post: SPCascadeDropdowns with multiple parent columns
Hi Marc, Yes! it is a combination of 1 and 2 that drives 3 and I tried using SPCascadeDropdowns with additional filter as well but it doesnt work. Is there anyway to do it? What are my options?...
View ArticleNew Post: Example: Lists.UpdateContentType ;
I call the function with List GUID. The scenario I have, I've modified the Event content type for my needs in a custom content type. Now, I am dynamically creating "Calendar" Lists for users, and I...
View ArticleNew Post: UpdateListItems Only Updates the First Record
OK, I've done some more testing and it gets weird. I figured out the only item it will update in a series is the first item, which happens to have an ID of 1. So, breaking it down to its simplest form,...
View ArticleNew Post: SPCascadeDropdowns with multiple parent columns
Charan: Unfortunately, the function as I've written it will not do this. It's a single parent/child relationship. M.
View ArticleNew Comment on "UpdateView"
Ive tried adding to the list view as a script to run at document ready and it does not update the view. How do you cause this script to run?
View ArticleCreated Unassigned: SPCascadeDropdowns give me a "postback error" [10150]
I everyone,after reviewing the issues which could match my problem, I found [this one](https://spservices.codeplex.com/workitem/10081).I'm encountering the same issue, and don't find any clue on how to...
View Article