<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Vertical Scrolling WebPart</title>
	<atom:link href="http://spjsblog.com/2010/06/22/vertical-scrolling-webpart/feed/" rel="self" type="application/rss+xml" />
	<link>http://spjsblog.com/2010/06/22/vertical-scrolling-webpart/</link>
	<description>JavaScript tricks for SharePoint</description>
	<lastBuildDate>Sat, 18 May 2013 06:31:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: waleed</title>
		<link>http://spjsblog.com/2010/06/22/vertical-scrolling-webpart/#comment-9246</link>
		<dc:creator>waleed</dc:creator>
		<pubDate>Thu, 09 May 2013 15:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://sharepointjavascript.wordpress.com/?p=2300#comment-9246</guid>
		<description><![CDATA[I used the code, I debug it, I see the results(returned with expected values) but I get the following error later:

SCRIPT28: Out of stack space 
jquery-1.4.2.min.js, line 22 character 282

what should be that error?]]></description>
		<content:encoded><![CDATA[<p>I used the code, I debug it, I see the results(returned with expected values) but I get the following error later:</p>
<p>SCRIPT28: Out of stack space<br />
jquery-1.4.2.min.js, line 22 character 282</p>
<p>what should be that error?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luis Valencia</title>
		<link>http://spjsblog.com/2010/06/22/vertical-scrolling-webpart/#comment-8673</link>
		<dc:creator>Luis Valencia</dc:creator>
		<pubDate>Wed, 24 Apr 2013 09:03:12 +0000</pubDate>
		<guid isPermaLink="false">http://sharepointjavascript.wordpress.com/?p=2300#comment-8673</guid>
		<description><![CDATA[Hi Nagalakshmi,

Replace that function (I corrected to CHROME, OPERA, and SAFARI):

// Function to pull items from view
function queryItemsByViewName(listName, viewName, viewFields, pagingInfo){
	var content = buildQueryContentByViewName(listName, viewName, viewFields, pagingInfo);
	var result = {count:-1, nextPagingInfo:&#039;&#039;, items:[]};
	
	wrapSoapRequest(wsBaseUrl + &#039;lists.asmx&#039;, &#039;http://schemas.microsoft.com/sharepoint/soap/GetListItems&#039;, content, function(data){
		/*
		result.count = $(&#039;rs\\:data&#039;, data).attr(&#039;ItemCount&#039;);*/
		result.count = $(data).find(&quot;[nodeName=&#039;rs:data&#039;]&quot;).attr(&#039;ItemCount&#039;);
		/*
		result.nextPagingInfo = $(&#039;rs\\:data&#039;, data).attr(&#039;ListItemCollectionPositionNext&#039;);*/
		result.nextPagingInfo = $(data).find(&quot;[nodeName=&#039;rs:data&#039;]&quot;).attr(&#039;ListItemCollectionPositionNext&#039;);
		
		/*
		$(&quot;z\\:row&quot;, data).each(function(idx, itemData){*/
		$(data).find(&quot;[nodeName=&#039;z:row&#039;]&quot;).each(function(idx, itemData){
			var fieldValObj = {}
			$.each(viewFields,function(i,field){
				var value = $(itemData).attr(&#039;ows_&#039; + field);
				if(value == undefined) value = null;
				fieldValObj[field]=value;
			});
			result.items.push(fieldValObj);
		});
	});
	return result;
}

I now is late...]]></description>
		<content:encoded><![CDATA[<p>Hi Nagalakshmi,</p>
<p>Replace that function (I corrected to CHROME, OPERA, and SAFARI):</p>
<p>// Function to pull items from view<br />
function queryItemsByViewName(listName, viewName, viewFields, pagingInfo){<br />
	var content = buildQueryContentByViewName(listName, viewName, viewFields, pagingInfo);<br />
	var result = {count:-1, nextPagingInfo:&#8221;, items:[]};</p>
<p>	wrapSoapRequest(wsBaseUrl + &#8216;lists.asmx&#8217;, &#8216;http://schemas.microsoft.com/sharepoint/soap/GetListItems&#8217;, content, function(data){<br />
		/*<br />
		result.count = $(&#8216;rs\\:data&#8217;, data).attr(&#8216;ItemCount&#8217;);*/<br />
		result.count = $(data).find(&#8220;[nodeName='rs:data']&#8220;).attr(&#8216;ItemCount&#8217;);<br />
		/*<br />
		result.nextPagingInfo = $(&#8216;rs\\:data&#8217;, data).attr(&#8216;ListItemCollectionPositionNext&#8217;);*/<br />
		result.nextPagingInfo = $(data).find(&#8220;[nodeName='rs:data']&#8220;).attr(&#8216;ListItemCollectionPositionNext&#8217;);</p>
<p>		/*<br />
		$(&#8220;z\\:row&#8221;, data).each(function(idx, itemData){*/<br />
		$(data).find(&#8220;[nodeName='z:row']&#8220;).each(function(idx, itemData){<br />
			var fieldValObj = {}<br />
			$.each(viewFields,function(i,field){<br />
				var value = $(itemData).attr(&#8216;ows_&#8217; + field);<br />
				if(value == undefined) value = null;<br />
				fieldValObj[field]=value;<br />
			});<br />
			result.items.push(fieldValObj);<br />
		});<br />
	});<br />
	return result;<br />
}</p>
<p>I now is late&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K. Walp</title>
		<link>http://spjsblog.com/2010/06/22/vertical-scrolling-webpart/#comment-8020</link>
		<dc:creator>K. Walp</dc:creator>
		<pubDate>Fri, 29 Mar 2013 19:03:19 +0000</pubDate>
		<guid isPermaLink="false">http://sharepointjavascript.wordpress.com/?p=2300#comment-8020</guid>
		<description><![CDATA[I&#039;m having trouble with this. All of the parameters are set correctly, and it looks like something is trying to happen, but getting an error asking to check the guids and base URL.

I will say however that I am trying to show the scrolling content from an External List that is pulling from a View of a database, and notice there is a Method tag near the RefField tag of the listview.

Can you help me with this, or suggest a work around? I want to be able to dyisplay scrolling external data in a CEWP.

Thanks,]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m having trouble with this. All of the parameters are set correctly, and it looks like something is trying to happen, but getting an error asking to check the guids and base URL.</p>
<p>I will say however that I am trying to show the scrolling content from an External List that is pulling from a View of a database, and notice there is a Method tag near the RefField tag of the listview.</p>
<p>Can you help me with this, or suggest a work around? I want to be able to dyisplay scrolling external data in a CEWP.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashmi</title>
		<link>http://spjsblog.com/2010/06/22/vertical-scrolling-webpart/#comment-4457</link>
		<dc:creator>Rashmi</dc:creator>
		<pubDate>Sun, 29 Apr 2012 09:04:35 +0000</pubDate>
		<guid isPermaLink="false">http://sharepointjavascript.wordpress.com/?p=2300#comment-4457</guid>
		<description><![CDATA[The links take the default theme color. Is there a way to over-ride and provide custom colors without changing theme?]]></description>
		<content:encoded><![CDATA[<p>The links take the default theme color. Is there a way to over-ride and provide custom colors without changing theme?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick D</title>
		<link>http://spjsblog.com/2010/06/22/vertical-scrolling-webpart/#comment-4456</link>
		<dc:creator>Nick D</dc:creator>
		<pubDate>Mon, 06 Feb 2012 19:07:25 +0000</pubDate>
		<guid isPermaLink="false">http://sharepointjavascript.wordpress.com/?p=2300#comment-4456</guid>
		<description><![CDATA[I apologize for any confusion. I was subscribed to both solutions and posted this in the wrong one. My issue is actually taking place on the solution you refered to in your reply above.]]></description>
		<content:encoded><![CDATA[<p>I apologize for any confusion. I was subscribed to both solutions and posted this in the wrong one. My issue is actually taking place on the solution you refered to in your reply above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Bautz</title>
		<link>http://spjsblog.com/2010/06/22/vertical-scrolling-webpart/#comment-4455</link>
		<dc:creator>Alexander Bautz</dc:creator>
		<pubDate>Sun, 05 Feb 2012 16:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://sharepointjavascript.wordpress.com/?p=2300#comment-4455</guid>
		<description><![CDATA[&lt;a href=&quot;http://spjsblog.com/2011/02/20/slideshow-for-sharepoint/&quot; rel=&quot;nofollow&quot;&gt;You can do all that this one does - and more - with this one&lt;/a&gt;

Alexander]]></description>
		<content:encoded><![CDATA[<p><a href="http://spjsblog.com/2011/02/20/slideshow-for-sharepoint/" rel="nofollow">You can do all that this one does &#8211; and more &#8211; with this one</a></p>
<p>Alexander</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick D</title>
		<link>http://spjsblog.com/2010/06/22/vertical-scrolling-webpart/#comment-4454</link>
		<dc:creator>Nick D</dc:creator>
		<pubDate>Thu, 26 Jan 2012 14:03:31 +0000</pubDate>
		<guid isPermaLink="false">http://sharepointjavascript.wordpress.com/?p=2300#comment-4454</guid>
		<description><![CDATA[Hi Alex,
I&#039;m having an overflow issue on IE8. I know there were issues with this in your earlier solution on IE6. Is there a more recent fix?]]></description>
		<content:encoded><![CDATA[<p>Hi Alex,<br />
I&#8217;m having an overflow issue on IE8. I know there were issues with this in your earlier solution on IE6. Is there a more recent fix?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Bautz</title>
		<link>http://spjsblog.com/2010/06/22/vertical-scrolling-webpart/#comment-4453</link>
		<dc:creator>Alexander Bautz</dc:creator>
		<pubDate>Thu, 26 Jan 2012 08:52:15 +0000</pubDate>
		<guid isPermaLink="false">http://sharepointjavascript.wordpress.com/?p=2300#comment-4453</guid>
		<description><![CDATA[&lt;a href=&quot;http://spjsblog.com/2011/02/20/slideshow-for-sharepoint/&quot; rel=&quot;nofollow&quot;&gt;Take a look at this one in stead&lt;/a&gt;

Alexander]]></description>
		<content:encoded><![CDATA[<p><a href="http://spjsblog.com/2011/02/20/slideshow-for-sharepoint/" rel="nofollow">Take a look at this one in stead</a></p>
<p>Alexander</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bijesh</title>
		<link>http://spjsblog.com/2010/06/22/vertical-scrolling-webpart/#comment-4452</link>
		<dc:creator>bijesh</dc:creator>
		<pubDate>Thu, 26 Jan 2012 08:45:41 +0000</pubDate>
		<guid isPermaLink="false">http://sharepointjavascript.wordpress.com/?p=2300#comment-4452</guid>
		<description><![CDATA[I am new to this...can u pleasee explain wherer to put this and how this works...i was trying to get this runnig for a long time now.]]></description>
		<content:encoded><![CDATA[<p>I am new to this&#8230;can u pleasee explain wherer to put this and how this works&#8230;i was trying to get this runnig for a long time now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Bautz</title>
		<link>http://spjsblog.com/2010/06/22/vertical-scrolling-webpart/#comment-4451</link>
		<dc:creator>Alexander Bautz</dc:creator>
		<pubDate>Sun, 04 Dec 2011 11:22:47 +0000</pubDate>
		<guid isPermaLink="false">http://sharepointjavascript.wordpress.com/?p=2300#comment-4451</guid>
		<description><![CDATA[Hi,
&lt;a href=&quot;http://spjsblog.com/2011/02/20/slideshow-for-sharepoint/&quot; rel=&quot;nofollow&quot;&gt;Take a look at this one in stead&lt;/a&gt;

Alexander]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
<a href="http://spjsblog.com/2011/02/20/slideshow-for-sharepoint/" rel="nofollow">Take a look at this one in stead</a></p>
<p>Alexander</p>
]]></content:encoded>
	</item>
</channel>
</rss>
