<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>jQuery Library for SharePoint Web Services</title><link>http://spservices.codeplex.com/project/feeds/rss</link><description>This is a jQuery library which abstracts SharePoint&amp;#39;s Web Services and makes them easier to use.  It also includes functions which use the various Web Service operations to provide more useful &amp;#40;and cool&amp;#41; capabilities. It works entirely client side and requires no server install.</description><item><title>New Post: $().SPServices.SPDisplayRelatedInfo</title><link>http://spservices.codeplex.com/discussions/342289</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi Marc&lt;/p&gt;
&lt;p&gt;I am adding a new discussion with my problem.&lt;/p&gt;
&lt;p&gt;I have 2 lists:&lt;/p&gt;
&lt;p&gt;ListB name--&amp;gt;Quote Term Type---&amp;gt; &amp;nbsp;columns: Title, &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Description(single line of Text)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;---------- &amp;nbsp; &amp;nbsp;
 -----------------------------&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Term1 &amp;nbsp; &amp;nbsp; &amp;nbsp;
 &amp;nbsp; &amp;nbsp; terms and conditions related to term1..................&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Term2 &amp;nbsp; &amp;nbsp; &amp;nbsp;
 &amp;nbsp; &amp;nbsp; &amp;nbsp;terms and conditions related to term2.................&lt;/p&gt;
&lt;p&gt;ListA name---&amp;gt;Terms---&amp;gt; columns: &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Terms( lookup to ListB:Title) , Description(Multiple lines of text) &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;so when user select some value in ddl in ListA(ex: Term1) , related text should display in ListA: Description.&lt;/p&gt;
&lt;p&gt;Its is displaying If I use ListA: Description as Single line of text, but I need the description column as Multiple lines of text. &amp;nbsp;( not working with multiple lines of text column).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;My Code:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;lt;script language=&amp;quot;javascript&amp;quot; type=&amp;quot;text/javascript&amp;quot; &amp;nbsp;src=&amp;quot;/testsite/SiteAssets/jquery-1.7.1.min.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;script language=&amp;quot;javascript&amp;quot; type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;/testsite/SiteAssets/jquery.SPServices-0.7.1.min.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;script language=&amp;quot;javascript&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;$(document).ready(function() {&lt;br&gt;
$().SPServices.SPDisplayRelatedInfo({&amp;nbsp;&lt;/p&gt;
&lt;p&gt;columnName: &amp;quot;Terms&amp;quot;,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;relatedList: &amp;quot;Quote Term Type&amp;quot;,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;relatedListColumn: &amp;quot;Title&amp;quot;,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;relatedColumns: [&amp;quot;Description&amp;quot;],&amp;nbsp;&lt;/p&gt;
&lt;p&gt;displayFormat: &amp;quot;list&amp;quot;,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;//Hide Column Headers and the data output from original function, not using the function as originally designed&amp;nbsp;&lt;/p&gt;
&lt;p&gt;//headerCSSClass: &amp;quot;ms-hidden&amp;quot;,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;//rowCSSClass:&amp;quot;ms-hidden&amp;quot;,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;completefunc: SetFields,&lt;/p&gt;
&lt;p&gt;debug: true&lt;/p&gt;
&lt;p&gt;&amp;nbsp; });&lt;/p&gt;
&lt;p&gt;});&amp;nbsp;&lt;/p&gt;
&lt;p&gt;function SetFields(){&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var srcDivId = &amp;quot;SPDisplayRelatedInfo_Terms&amp;quot;;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var tds = document.getElementById(srcDivId).getElementsByTagName(&amp;quot;td&amp;quot;);&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var Column1Data = tds[0].innerHTML;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var theDropDown = getTagFromIdentifierAndTitle(&amp;quot;select&amp;quot;,&amp;quot;&amp;quot;,&amp;quot;Terms&amp;quot;); &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var theTextBox = getTagFromIdentifierAndTitle(&amp;quot;input&amp;quot;,&amp;quot;&amp;quot;,&amp;quot;Description&amp;quot;);&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//This is what prevents it from being changed every time the page flips.&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (theTextBox.value==&amp;quot;&amp;quot;){&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; theTextBox.value = Column1Data; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else if (theTextBox.value!==Column1Data){ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; theDropDown.parentElement.onclick = function(){&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; theTextBox.value = Column1Data;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; };&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; };&lt;/p&gt;
&lt;p&gt;&amp;nbsp;function getTagFromIdentifierAndTitle(tagName, identifier, title) {&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var len = identifier.length;&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var tags = &amp;nbsp; document.getElementsByTagName(tagName);&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; for (var i=0; i &amp;lt; &amp;nbsp; tags.length; i&amp;#43;&amp;#43;) {&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var tempString = tags[i].id;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; if (tags[i].title == title &amp;amp;&amp;amp; (identifier == &amp;quot;&amp;quot; || &amp;nbsp; tempString.indexOf(identifier) == tempString.length - len)) {&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return tags[i];&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;}&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; return null;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; };&lt;/p&gt;
&lt;p&gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any ideas&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;
&lt;/div&gt;</description><author>remo1114</author><pubDate>Wed, 22 Feb 2012 22:09:29 GMT</pubDate><guid isPermaLink="false">New Post: $().SPServices.SPDisplayRelatedInfo 20120222100929P</guid></item><item><title>New Post: ModifyUserPropertyByAccountName - accountName param</title><link>http://spservices.codeplex.com/discussions/299227</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks for the response. Yeah Soap header was not set properly. Its working fine now.&lt;/p&gt;&lt;/div&gt;</description><author>sgaurav</author><pubDate>Wed, 22 Feb 2012 18:31:06 GMT</pubDate><guid isPermaLink="false">New Post: ModifyUserPropertyByAccountName - accountName param 20120222063106P</guid></item><item><title>Commented Issue: Extend SPFilterDropdown with CAMLQueryOptions or RecursiveAll [9785]</title><link>http://spservices.codeplex.com/workitem/9785</link><description>thIf you have a standard SharePoint Lookup-Field linked to a Document Library, it shows files and folders recursive. The recursive-functionality is lost when using SPFilterDropdown.&lt;br /&gt;&lt;br /&gt;Please either extend SPFilterDropdown with CAMLQueryOptions option, e.g.&lt;br /&gt;&amp;#36;&amp;#40;&amp;#41;.SPServices.SPFilterDropdown&amp;#40;&amp;#123;&lt;br /&gt;&amp;#9;relationshipList&amp;#58; &amp;#34;Files&amp;#34;,&lt;br /&gt;&amp;#9;relationshipListColumn&amp;#58; &amp;#34;Title&amp;#34;,&lt;br /&gt;&amp;#9;columnName&amp;#58; &amp;#34;File&amp;#34;,&lt;br /&gt;&amp;#9;CAMLQuery&amp;#58; &amp;#34;&amp;#60;And&amp;#62;&amp;#60;Eq&amp;#62;&amp;#60;FieldRef Name&amp;#61;&amp;#39;FSObjType&amp;#39; &amp;#47;&amp;#62;&amp;#60;Value Type&amp;#61;&amp;#39;Lookup&amp;#39;&amp;#62;1&amp;#60;&amp;#47;Value&amp;#62;&amp;#60;&amp;#47;Eq&amp;#62;&amp;#60;IsNotNull&amp;#62;&amp;#60;FieldRef Name&amp;#61;&amp;#39;Title&amp;#39; &amp;#47;&amp;#62;&amp;#60;&amp;#47;IsNotNull&amp;#62;&amp;#60;&amp;#47;And&amp;#62;&amp;#34;,&lt;br /&gt;&amp;#9;CAMLQueryOptions&amp;#58; &amp;#39;&amp;#60;QueryOptions&amp;#62;&amp;#60;ViewAttributes Scope&amp;#61;&amp;#34;RecursiveAll&amp;#34;&amp;#47;&amp;#62;&amp;#60;&amp;#47;QueryOptions&amp;#62;&amp;#39;,&lt;br /&gt;&amp;#9;completefunc&amp;#58; null&lt;br /&gt;&amp;#125;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;or change the hardcoded CAMLQueryOptions to&amp;#58;&lt;br /&gt;CAMLQueryOptions&amp;#58;&amp;#34;&amp;#60;QueryOptions&amp;#62;&amp;#60;IncludeMandatoryColumns&amp;#62;FALSE&amp;#60;&amp;#47;IncludeMandatoryColumns&amp;#62;&amp;#60;ViewAttributes Scope&amp;#61;&amp;#92;&amp;#34;RecursiveAll&amp;#92;&amp;#34;&amp;#47;&amp;#62;&amp;#60;&amp;#47;QueryOptions&amp;#62;&amp;#34;&lt;br /&gt;Comments: ** Comment from web user: benigemperle ** &lt;p&gt;It works in 0.7.1a.&lt;br /&gt;Thanks&amp;#33;&lt;/p&gt;</description><author>benigemperle</author><pubDate>Wed, 22 Feb 2012 16:06:38 GMT</pubDate><guid isPermaLink="false">Commented Issue: Extend SPFilterDropdown with CAMLQueryOptions or RecursiveAll [9785] 20120222040638P</guid></item><item><title>New Post: Show all contents of "Multiple lines of text"</title><link>http://spservices.codeplex.com/discussions/338042</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;That is correct spevilgenius.&amp;nbsp; The multiple lines of text is a append only type field.&amp;nbsp; Do you know how to access these versions?&lt;/p&gt;&lt;/div&gt;</description><author>dahancock1</author><pubDate>Wed, 22 Feb 2012 14:46:13 GMT</pubDate><guid isPermaLink="false">New Post: Show all contents of "Multiple lines of text" 20120222024613P</guid></item><item><title>New Post: Multiple text box array</title><link>http://spservices.codeplex.com/discussions/338567</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;Thanks for the feedback Paul, much appreciated. Ok that makes perfect sense! I also like the inclusion of the slow/fast function, great idea.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;Cheers&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;Carl&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;
&lt;div style="border:none; border-top:solid #B5C4DF 1.0pt; padding:3.0pt 0in 0in 0in"&gt;
&lt;p&gt;&lt;b&gt;&lt;span style="font-size:10.0pt; font-family:"&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:10.0pt; font-family:"&gt; ptavares [email removed]
&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Tuesday, February 21, 2012 8:47 PM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Williams,Carl [Ontario]&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: Multiple text box array [SPServices:338567]&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;From: ptavares&lt;/span&gt;&lt;/p&gt;
&lt;div id="ThreadNotificationPostBody" style="margin-bottom:24.0pt"&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;Carl,&lt;br&gt;
I do not know of an automated way in SPServices to do that. What you are describing is something that is too specific and custom. SPServices is meant for interacting with SP's web services API.
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;What you are asking for can be done with a little JavaScript. One approach is to use CSS classes. Example: place a class named group1 on all columns for the first group of columns you want to show hide. Place group2
 on the columns for the second group. The classes need be placed on each row of the on the table , including the table headers. You might have to customize the edit form (ex: through SP Designer) to include the classes as it builds the table)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;To hide and show, you can do something like:
&lt;br&gt;
$(&amp;quot;.group1&amp;quot;).hide(&amp;quot;slow&amp;quot;, function(){ $(&amp;quot;group2&amp;quot;).show(&amp;quot;slow&amp;quot;); })&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;Paul&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;Sent from mobile&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;On Feb 21, 2012 6:45 PM, &amp;quot;Carlw&amp;quot; &amp;lt;&lt;a href="mailto:notifications@codeplex.com"&gt;notifications@codeplex.com&lt;/a&gt;&amp;gt; wrote:&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>Carlw</author><pubDate>Wed, 22 Feb 2012 13:36:32 GMT</pubDate><guid isPermaLink="false">New Post: Multiple text box array 20120222013632P</guid></item><item><title>New Post: Show all contents of "Multiple lines of text"</title><link>http://spservices.codeplex.com/discussions/338042</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Are you talking about a field that you have setup as an Append Only type field? I believe that if this is the case, then SharePoint creates versions for each item when comments are added.&lt;/p&gt;&lt;/div&gt;</description><author>spevilgenius</author><pubDate>Wed, 22 Feb 2012 12:17:15 GMT</pubDate><guid isPermaLink="false">New Post: Show all contents of "Multiple lines of text" 20120222121715P</guid></item><item><title>New Post: SPServices 0.7.0 -&gt; 0.7.1a</title><link>http://spservices.codeplex.com/discussions/340776</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Im a new user of&amp;nbsp;spservices and have used Cascading Dropdowns in a SharePoint solution.&lt;/p&gt;
&lt;p&gt;The speed when typing in the parent dropdown is so slow... Then I jumped on the SPServices website to check if maybe a newer version of SPServices had arrived.&lt;/p&gt;
&lt;p&gt;And YES - there was a 0.7.1a version.&lt;/p&gt;
&lt;p&gt;Downloaded the .js.min version and tried how it works...&lt;/p&gt;
&lt;p&gt;Now the parent dropdown is MUCH faster :) BUT the child dropdown doesn't get populated fx if i type &amp;quot;Progra&amp;quot; &amp;#43; ENTER (where it finds Programming) then the child dropdown is empty... Jumping back and forth clicking, pressing enter and suddenly the child is
 populated.&lt;/p&gt;
&lt;p&gt;BUG?&lt;/p&gt;
&lt;p&gt;So im back again to the old SPServices 0.7.0&lt;/p&gt;
&lt;p&gt;CODE:&lt;/p&gt;
&lt;p&gt;===============================================================&lt;/p&gt;
&lt;p&gt;&amp;lt;asp:Content ContentPlaceHolderId=&amp;quot;PlaceHolderMain&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot; language=&amp;quot;javascript&amp;quot; src=&amp;quot;/jQuery/jquery-1.7.1.min.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot; language=&amp;quot;javascript&amp;quot; src=&amp;quot;/jQuery/jquery.SPServices-0.7.0.min.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(document).ready(function() {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $().SPServices.SPCascadeDropdowns({&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; relationshipList: &amp;quot;Skills&amp;quot;,&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; relationshipListParentColumn: &amp;quot;Catagory&amp;quot;,&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; relationshipListChildColumn: &amp;quot;Title&amp;quot;,&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parentColumn: &amp;quot;Category&amp;quot;,&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; childColumn: &amp;quot;Skill&amp;quot;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;br&gt;
&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;/div&gt;</description><author>jensenflemming</author><pubDate>Wed, 22 Feb 2012 10:48:49 GMT</pubDate><guid isPermaLink="false">New Post: SPServices 0.7.0 -&gt; 0.7.1a 20120222104849A</guid></item><item><title>New Post: Selected lookup value used for different lookup column</title><link>http://spservices.codeplex.com/discussions/310500</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Two additional notes: We're working with 0.7.1a and we've put all script blocks together like you suggested.&lt;/p&gt;&lt;/div&gt;</description><author>andreasblueher</author><pubDate>Wed, 22 Feb 2012 08:21:02 GMT</pubDate><guid isPermaLink="false">New Post: Selected lookup value used for different lookup column 20120222082102A</guid></item><item><title>New Post: Multiple text box array</title><link>http://spservices.codeplex.com/discussions/338567</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Carl,&lt;br&gt;
I do not know of an automated way in SPServices to do that. What you are describing is something that is too specific and custom. SPServices is meant for interacting with SP's web services API.
&lt;/p&gt;
&lt;p&gt;What you are asking for can be done with a little JavaScript. One approach is to use CSS classes. Example: place a class named group1 on all columns for the first group of columns you want to show hide. Place group2 on the columns for the second group. The
 classes need be placed on each row of the on the table , including the table headers. You might have to customize the edit form (ex: through SP Designer) to include the classes as it builds the table)&lt;/p&gt;
&lt;p&gt;To hide and show, you can do something like: &lt;br&gt;
$(&amp;quot;.group1&amp;quot;).hide(&amp;quot;slow&amp;quot;, function(){ $(&amp;quot;group2&amp;quot;).show(&amp;quot;slow&amp;quot;); })&lt;/p&gt;
&lt;p&gt;Paul&lt;/p&gt;
&lt;p&gt;Sent from mobile&lt;/p&gt;
&lt;p&gt;On Feb 21, 2012 6:45 PM, &amp;quot;Carlw&amp;quot; &amp;lt;&lt;a href="mailto:notifications@codeplex.com"&gt;notifications@codeplex.com&lt;/a&gt;&amp;gt; wrote:&lt;/p&gt;
&lt;/div&gt;</description><author>ptavares</author><pubDate>Wed, 22 Feb 2012 01:47:02 GMT</pubDate><guid isPermaLink="false">New Post: Multiple text box array 20120222014702A</guid></item><item><title>New Post: Multiple text box array</title><link>http://spservices.codeplex.com/discussions/338567</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello.&lt;/p&gt;
&lt;p&gt;I have a radio box on my SharePoint EditForm.aspx. When an item is selected I'm going to hide a list of columns and show another group and visa versa.&lt;/p&gt;
&lt;p&gt;Instead of definig the variable for say 20 fields then running through each one to either hide or show depending on the radio box selection, does SPServices have a &amp;quot;presto&amp;quot; type of jquery function to throw them into an array at which point I'd say, for example.....&amp;nbsp;peoplefieldsArray
 unhide etc.?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;/div&gt;</description><author>Carlw</author><pubDate>Tue, 21 Feb 2012 23:44:52 GMT</pubDate><guid isPermaLink="false">New Post: Multiple text box array 20120221114452P</guid></item><item><title>New Post: Show all contents of "Multiple lines of text"</title><link>http://spservices.codeplex.com/discussions/338042</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I have a list that I need to create a print friendly view of the list. I can pull all of the required fields just fine.&amp;nbsp; When I go to display my "comments" field I only see the first comment.&amp;nbsp; Does anyone know how to loop through a "Multiple lines of text" field to display all of it's contents?&lt;/p&gt;&lt;/div&gt;</description><author>dahancock1</author><pubDate>Tue, 21 Feb 2012 21:25:59 GMT</pubDate><guid isPermaLink="false">New Post: Show all contents of "Multiple lines of text" 20120221092559P</guid></item><item><title>New Post: Insert to a "People or Group" field from a "people picker"</title><link>http://spservices.codeplex.com/discussions/336183</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Mike,&lt;/p&gt;
&lt;p&gt;Got it... Thanks for the post back...&lt;/p&gt;
&lt;p&gt;I'm sure Marc will try to respond when he gets a chance.&lt;/p&gt;
&lt;p&gt;Paul.&lt;/p&gt;&lt;/div&gt;</description><author>ptavares</author><pubDate>Tue, 21 Feb 2012 19:22:11 GMT</pubDate><guid isPermaLink="false">New Post: Insert to a "People or Group" field from a "people picker" 20120221072211P</guid></item><item><title>New Post: Insert to a "People or Group" field from a "people picker"</title><link>http://spservices.codeplex.com/discussions/336183</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks for your help - but I think its the same issue.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Your solution works - but only if the user has at some point logged into the site collection. &amp;nbsp;If the user has not logged into the sharepoint site - then the people picker does not produce an ID - and you cant use "GetUserInfo" either.&lt;/p&gt;
&lt;p&gt;That's what this&amp;nbsp;ensureuser seems to do... create a new SPID if it doesnt exist...but I dont know if this is feasible using spservices.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>mikebedwards</author><pubDate>Tue, 21 Feb 2012 19:08:34 GMT</pubDate><guid isPermaLink="false">New Post: Insert to a "People or Group" field from a "people picker" 20120221070834P</guid></item><item><title>New Post: GetColumns - Single Column Schema</title><link>http://spservices.codeplex.com/discussions/337349</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi Folks&lt;/p&gt;
&lt;p&gt;I'm looking for a way to retrieve the full schema for a specific site column using GetColumns as the source but using JQuery not the CSOM.&amp;nbsp; I will then be using the schema for the single site column to add a new column to a set of lists using UpdateList.&amp;nbsp;
 I've tried writing out what I think would be the schema based on data I found for the site column but it doesn't behave.&amp;nbsp; I believe it has to be an exact copy of the site column schema that you pass into UpdateList so I'd like to retrieve it using GetColumns.&lt;/p&gt;
&lt;p&gt;Any help appreciated.&amp;nbsp; Will be happy to post final code when working.&lt;/p&gt;
&lt;p&gt;Des&lt;/p&gt;
&lt;/div&gt;</description><author>DesOwen</author><pubDate>Tue, 21 Feb 2012 18:24:22 GMT</pubDate><guid isPermaLink="false">New Post: GetColumns - Single Column Schema 20120221062422P</guid></item><item><title>New Post: Insert to a "People or Group" field from a "people picker"</title><link>http://spservices.codeplex.com/discussions/336183</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Mike,&lt;/p&gt;
&lt;p&gt;Just so that we keep each item in sync... your initial issue of,&lt;span style="color: #800080;"&gt; Unable to get the ID for a resolved USER via a People Picker field&lt;/span&gt;, is not fixed, Correct? You are able to get the ID?&lt;/p&gt;
&lt;p&gt;Or are you saying that if the user is not "...login to that site collection", the People Picker does not resolve the selected USER?&lt;/p&gt;
&lt;p&gt;Can you paste the JavaScript code that is attempting to use the ID of the resolved user.&lt;/p&gt;
&lt;p&gt;The question around EnsureUser operation would need the help of Marc.&lt;/p&gt;
&lt;p&gt;Paul&lt;/p&gt;&lt;/div&gt;</description><author>ptavares</author><pubDate>Tue, 21 Feb 2012 18:21:05 GMT</pubDate><guid isPermaLink="false">New Post: Insert to a "People or Group" field from a "people picker" 20120221062105P</guid></item><item><title>New Post: Insert to a "People or Group" field from a "people picker"</title><link>http://spservices.codeplex.com/discussions/336183</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Yes - thanks,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;But - it only works if the user has visited the sharepoint site. Even if the People Picker resolved the user (as they are a valid active directory user)....it seems that Sharepoint does not create a user profile unless they login to that site collection.&lt;/p&gt;
&lt;p&gt;I think that is what the ensueuser method does - but is there anyway to do this with spservices?:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.ensureuser.aspx"&gt;http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.ensureuser.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>mikebedwards</author><pubDate>Tue, 21 Feb 2012 17:23:03 GMT</pubDate><guid isPermaLink="false">New Post: Insert to a "People or Group" field from a "people picker" 20120221052303P</guid></item><item><title>New Post: Insert to a "People or Group" field from a "people picker"</title><link>http://spservices.codeplex.com/discussions/336183</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Mike,&lt;/p&gt;
&lt;p&gt;What I was trying to describe, is that once a user, through the People Picker field, selects a users, SP actually stores information about the selected user in a hidden &amp;lt;div&amp;gt; element on the page until the form is ready to be "saved/submitted"... You can use Javascript to find that hidden element and drill down to get the ID of that selected user.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The prior link I posted shows you how to get the NTID of a user that was &lt;span style="text-decoration: underline;"&gt;&lt;strong&gt;selected/resolved&lt;/strong&gt;&lt;/span&gt; by the people picker (note... its important to&lt;strong&gt; not just &lt;/strong&gt;get whatever value in on "$("textarea[title='Owner']").val()" as you are doing above... a user could have just typed in some junk text and never relay picked a valid and "resolved" user)&lt;/p&gt;
&lt;p&gt;Using the method to find the resolved entries by the people picker and IE's Debugger, you can walk through the DOM tree to see the HTML structure and then use jQuery to get the user's ID.&lt;/p&gt;
&lt;p&gt;Paul&lt;/p&gt;&lt;/div&gt;</description><author>ptavares</author><pubDate>Tue, 21 Feb 2012 16:54:00 GMT</pubDate><guid isPermaLink="false">New Post: Insert to a "People or Group" field from a "people picker" 20120221045400P</guid></item><item><title>New Post: Selected lookup value used for different lookup column</title><link>http://spservices.codeplex.com/discussions/310500</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hello Marc,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I done some more digging .. and I think I found the root of all evil ;-). It comes down to all our ComplexToSimpleDropdowns having the same ID, which is caused by &lt;a href="http://spservices.codeplex.com/wikipage?title=$().SPServices.SPListNameFromUrl" target="_blank"&gt;this function&lt;/a&gt;&amp;nbsp;not returning the listname inside our &lt;em&gt;customforms&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;So there are several questions on my side:&lt;/p&gt;
&lt;p&gt;- can we do anything to make the function work inside our custom forms?&lt;/p&gt;
&lt;p&gt;- can we modify the&amp;nbsp;genContainerId function to return some other id instead?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;</description><author>andreasblueher</author><pubDate>Tue, 21 Feb 2012 16:42:47 GMT</pubDate><guid isPermaLink="false">New Post: Selected lookup value used for different lookup column 20120221044247P</guid></item><item><title>New Post: Insert to a "People or Group" field from a "people picker"</title><link>http://spservices.codeplex.com/discussions/336183</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks for the reply,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I dont understand - the problem is that I dont know the ID Integer of the user. I am using a people picker - from which I can get the NTID (edwardsm) - but I cant get the NTID.&lt;/p&gt;
&lt;p&gt;Using "GetUserInfo" service works to get the numeric ID - but only if they are already a sharepoint user. If that person is not already a sharepoint user, then there isnt an ID yet. (If you use the standard new item form - the people picker seems to handle this).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thats why the link above suggests using "ensureuser" - but thats using server side code - I cant work out how to access this via web services.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>mikebedwards</author><pubDate>Tue, 21 Feb 2012 16:32:19 GMT</pubDate><guid isPermaLink="false">New Post: Insert to a "People or Group" field from a "people picker" 20120221043219P</guid></item><item><title>New Post: StartWorkflow</title><link>http://spservices.codeplex.com/discussions/336723</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hey,&lt;/p&gt;
&lt;p&gt;I have a problem with spservice and startworkflow.&lt;/p&gt;
&lt;p&gt;I check on the wiki&amp;nbsp;&lt;a href="http://spservices.codeplex.com/wikipage?title=StartWorkflow&amp;referringTitle=Workflow"&gt;http://spservices.codeplex.com/wikipage?title=StartWorkflow&amp;amp;referringTitle=Workflow&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;My code : &lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt; $().SPServices({
    operation: &lt;span style="color:#a31515"&gt;&amp;quot;StartWorkflow&amp;quot;&lt;/span&gt;,
    debug: &lt;span style="color:blue"&gt;true&lt;/span&gt;,
    item: encodeabsUrl,
    templateId: templateId,
    workflowParameters: &lt;span style="color:#a31515"&gt;&amp;quot;&amp;lt;root /&amp;gt;&amp;quot;&lt;/span&gt;,
    completefunc: &lt;span style="color:blue"&gt;function&lt;/span&gt;(xData, Status) {
     &lt;span style="color:blue"&gt;var&lt;/span&gt; out =  $().SPServices.SPDebugXMLHttpResult({node:  xData.responseXML});
     $(&lt;span style="color:#a31515"&gt;&amp;quot;#error&amp;quot;&lt;/span&gt;).append(out);
    }
  });
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In the&amp;nbsp;SPDebugXMLHttpResult i don't see an error but when i check on my list the field for the workflow display &amp;quot;error occured&amp;quot;.&lt;/p&gt;
&lt;p&gt;i notice that it's the system account who launch the workflow instead of the current user when i launch manuelly.&lt;/p&gt;
&lt;p&gt;have you meet this case already ?&lt;/p&gt;
&lt;p&gt;Do you know how i can launch the workflow with the current user by spservice ?&lt;/p&gt;
&lt;p&gt;Manuelly the workflow excecute fine .&lt;/p&gt;
&lt;/div&gt;</description><author>tazamorte</author><pubDate>Tue, 21 Feb 2012 15:24:49 GMT</pubDate><guid isPermaLink="false">New Post: StartWorkflow 20120221032449P</guid></item></channel></rss>
