<?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 for Scott Price</title>
	<atom:link href="http://scottprice.me/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://scottprice.me</link>
	<description>SharePoint, SilverLight, and Firefighting.  That's a combination you don't see every day.</description>
	<pubDate>Wed, 10 Mar 2010 08:02:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on jQuery Ticker for SharePoint Announcement List by Craig</title>
		<link>http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/comment-page-1/#comment-348</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Tue, 11 Aug 2009 15:23:08 +0000</pubDate>
		<guid isPermaLink="false">http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/#comment-348</guid>
		<description>Further to my previous post(s), I've narrowed it down to the UL but still baffled. 

Message: Object doesn't support this property or method
Line: 867 ()</description>
		<content:encoded><![CDATA[<p>Further to my previous post(s), I&#8217;ve narrowed it down to the UL but still baffled. </p>
<p>Message: Object doesn&#8217;t support this property or method<br />
Line: 867 ()</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Ticker for SharePoint Announcement List by Craig</title>
		<link>http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/comment-page-1/#comment-347</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Tue, 11 Aug 2009 14:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/#comment-347</guid>
		<description>Apparently I can't even post code correctly - or edit my post!  doh!  Please feel free to edit my previous post/delete this one as appropriate.

[code]




    $(document).ready(function() {
        var soapEnv =
            " \
                 \
                      \
                        Announcements \
                         \
                             \
                                \
                            \
                         \
                     \
                 \
            ";
        $.ajax({
            url: "_vti_bin/lists.asmx",
            type: "POST",
            dataType: "xml",
            data: soapEnv,
            complete: processResult,
            contentType: "text/xml; charset=\"utf-8\""
        });
    });

function processResult(xData, status) {
        var newnews = $("").attr("class", "newsticker");
        $(xData.responseXML).find("z\\:row").each(function() {
            var liHtml = "" + $(this).attr("ows_Title") + "";
            newnews.append(liHtml);
        });

        newnews.appendTo("#tasksUL").newsTicker();
    }



.newsticker {
    list-style-type: none;
    background: red;
    margin: 0;
}




 
[/code]</description>
		<content:encoded><![CDATA[<p>Apparently I can&#8217;t even post code correctly - or edit my post!  doh!  Please feel free to edit my previous post/delete this one as appropriate.</p>
<div class="codesnip-container" >$(document).ready(function() {<br />
        var soapEnv =<br />
            &#8221; \<br />
                 \<br />
                      \<br />
                        Announcements \<br />
                         \<br />
                             \<br />
                                \<br />
                            \<br />
                         \<br />
                     \<br />
                 \<br />
            &#8220;;<br />
        $.ajax({<br />
            url: &#8220;_vti_bin/lists.asmx&#8221;,<br />
            type: &#8220;POST&#8221;,<br />
            dataType: &#8220;xml&#8221;,<br />
            data: soapEnv,<br />
            complete: processResult,<br />
            contentType: &#8220;text/xml; charset=\&#8221;utf-8\&#8221;"<br />
        });<br />
    });</p>
<p>function processResult(xData, status) {<br />
        var newnews = $(&#8221;").attr(&#8221;class&#8221;, &#8220;newsticker&#8221;);<br />
        $(xData.responseXML).find(&#8221;z\\:row&#8221;).each(function() {<br />
            var liHtml = &#8220;&#8221; + $(this).attr(&#8221;ows_Title&#8221;) + &#8220;&#8221;;<br />
            newnews.append(liHtml);<br />
        });</p>
<p>        newnews.appendTo(&#8221;#tasksUL&#8221;).newsTicker();<br />
    }</p>
<p>.newsticker {<br />
    list-style-type: none;<br />
    background: red;<br />
    margin: 0;<br />
}</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Ticker for SharePoint Announcement List by Craig</title>
		<link>http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/comment-page-1/#comment-346</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Tue, 11 Aug 2009 14:47:40 +0000</pubDate>
		<guid isPermaLink="false">http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/#comment-346</guid>
		<description>Hey Scott.  Thanks, this is a great post and well explained.  I've been trying to find a way of getting this to work in Sharepoint for some time now.  Unforunately I'm still not quite there and I don't know why (not being a developer doesn't help!).  I wonder if you could help at all?

I copied the .js files to a doc library called 'development code' and changed my references as below.  the list I am referencing is simply called 'announcements', so I changed the web service request appropriately.  

My page now loads without any errors but also doens't display anything in the webpart. Any help would be greatly appreciated!

regards,
Craig

[code]



    $(document).ready(function() {
        var soapEnv =
            " \
                 \
                      \
                        Announcements \
                         \
                             \
                                \
                            \
                         \
                     \
                 \
            ";
        $.ajax({
            url: "_vti_bin/lists.asmx",
            type: "POST",
            dataType: "xml",
            data: soapEnv,
            complete: processResult,
            contentType: "text/xml; charset=\"utf-8\""
        });
    });

function processResult(xData, status) {
        var newnews = $("").attr("class", "newsticker");
        $(xData.responseXML).find("z\\:row").each(function() {
            var liHtml = "" + $(this).attr("ows_Title") + "";
            newnews.append(liHtml);
        });

        newnews.appendTo("#tasksUL").newsTicker();
    }


.newsticker {
    list-style-type: none;
    background: red;
    margin: 0;
}




 [/code]</description>
		<content:encoded><![CDATA[<p>Hey Scott.  Thanks, this is a great post and well explained.  I&#8217;ve been trying to find a way of getting this to work in Sharepoint for some time now.  Unforunately I&#8217;m still not quite there and I don&#8217;t know why (not being a developer doesn&#8217;t help!).  I wonder if you could help at all?</p>
<p>I copied the .js files to a doc library called &#8216;development code&#8217; and changed my references as below.  the list I am referencing is simply called &#8216;announcements&#8217;, so I changed the web service request appropriately.  </p>
<p>My page now loads without any errors but also doens&#8217;t display anything in the webpart. Any help would be greatly appreciated!</p>
<p>regards,<br />
Craig</p>
<div class="codesnip-container" >$(document).ready(function() {<br />
        var soapEnv =<br />
            &#8221; \<br />
                 \<br />
                      \<br />
                        Announcements \<br />
                         \<br />
                             \<br />
                                \<br />
                            \<br />
                         \<br />
                     \<br />
                 \<br />
            &#8220;;<br />
        $.ajax({<br />
            url: &#8220;_vti_bin/lists.asmx&#8221;,<br />
            type: &#8220;POST&#8221;,<br />
            dataType: &#8220;xml&#8221;,<br />
            data: soapEnv,<br />
            complete: processResult,<br />
            contentType: &#8220;text/xml; charset=\&#8221;utf-8\&#8221;"<br />
        });<br />
    });</p>
<p>function processResult(xData, status) {<br />
        var newnews = $(&#8221;").attr(&#8221;class&#8221;, &#8220;newsticker&#8221;);<br />
        $(xData.responseXML).find(&#8221;z\\:row&#8221;).each(function() {<br />
            var liHtml = &#8220;&#8221; + $(this).attr(&#8221;ows_Title&#8221;) + &#8220;&#8221;;<br />
            newnews.append(liHtml);<br />
        });</p>
<p>        newnews.appendTo(&#8221;#tasksUL&#8221;).newsTicker();<br />
    }</p>
<p>.newsticker {<br />
    list-style-type: none;<br />
    background: red;<br />
    margin: 0;<br />
}</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Ticker for SharePoint Announcement List by Scott</title>
		<link>http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/comment-page-1/#comment-344</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Tue, 11 Aug 2009 02:35:12 +0000</pubDate>
		<guid isPermaLink="false">http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/#comment-344</guid>
		<description>&lt;a href="#comment-339" rel="nofollow"&gt;@santhosh &lt;/a&gt; 
I'm not sure I understand the problem.  If you post some more details, I'll be glad to try to help.</description>
		<content:encoded><![CDATA[<p><a href="#comment-339" rel="nofollow">@santhosh </a><br />
I&#8217;m not sure I understand the problem.  If you post some more details, I&#8217;ll be glad to try to help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Ticker for SharePoint Announcement List by Scott</title>
		<link>http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/comment-page-1/#comment-343</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Tue, 11 Aug 2009 02:34:03 +0000</pubDate>
		<guid isPermaLink="false">http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/#comment-343</guid>
		<description>&lt;a href="#comment-341" rel="nofollow"&gt;@Steve Cheng &lt;/a&gt; 

I haven't encountered that issue, but I have not deployed the code anywhere outside of a test environment.  I'll take a look as soon as I get a chance to let you know what I find.

If you've figured out how to prevent the page jump, please let me know and I'll update the post with your fix.

Thanks</description>
		<content:encoded><![CDATA[<p><a href="#comment-341" rel="nofollow">@Steve Cheng </a> </p>
<p>I haven&#8217;t encountered that issue, but I have not deployed the code anywhere outside of a test environment.  I&#8217;ll take a look as soon as I get a chance to let you know what I find.</p>
<p>If you&#8217;ve figured out how to prevent the page jump, please let me know and I&#8217;ll update the post with your fix.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Ticker for SharePoint Announcement List by Steve Cheng</title>
		<link>http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/comment-page-1/#comment-341</link>
		<dc:creator>Steve Cheng</dc:creator>
		<pubDate>Mon, 03 Aug 2009 19:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/#comment-341</guid>
		<description>Scott,

Great job with the Sharepoint integration. I applied this to my site and it works, however, whenever the page is scroll to the point where this newsticker is partially out of view, the page jumps to the top when the next news appears.
Is there any way to prevent this? It seems like a .focus() issue but I could not find it.

I appreciate your help,
Steve</description>
		<content:encoded><![CDATA[<p>Scott,</p>
<p>Great job with the Sharepoint integration. I applied this to my site and it works, however, whenever the page is scroll to the point where this newsticker is partially out of view, the page jumps to the top when the next news appears.<br />
Is there any way to prevent this? It seems like a .focus() issue but I could not find it.</p>
<p>I appreciate your help,<br />
Steve</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Ticker for SharePoint Announcement List by jQuery Ticker for SharePoint Announcement List &#171; Microsoft Technology, .Net, BizTalk, Sharepoint &#38; etc.</title>
		<link>http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/comment-page-1/#comment-340</link>
		<dc:creator>jQuery Ticker for SharePoint Announcement List &#171; Microsoft Technology, .Net, BizTalk, Sharepoint &#38; etc.</dc:creator>
		<pubDate>Thu, 23 Jul 2009 04:01:57 +0000</pubDate>
		<guid isPermaLink="false">http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/#comment-340</guid>
		<description>[...] by ken zheng on July 23, 2009  By using Scott Price&#8217;s code, I add a query to the CAML so it will only display annoucment which not [...]</description>
		<content:encoded><![CDATA[<p>[...] by ken zheng on July 23, 2009  By using Scott Price&#8217;s code, I add a query to the CAML so it will only display annoucment which not [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Ticker for SharePoint Announcement List by santhosh</title>
		<link>http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/comment-page-1/#comment-339</link>
		<dc:creator>santhosh</dc:creator>
		<pubDate>Fri, 17 Jul 2009 08:04:56 +0000</pubDate>
		<guid isPermaLink="false">http://scottprice.me/2009/05/11/jquery-ticker-for-sharepoint-announcement-list/#comment-339</guid>
		<description>Thanks for your excellent post.i need a one help.in my site i need to display a two different list in two different CEWP.how can i do.

i have try to display Two list in two CEWP but it's display in single CEWP.

Please Help Me.</description>
		<content:encoded><![CDATA[<p>Thanks for your excellent post.i need a one help.in my site i need to display a two different list in two different CEWP.how can i do.</p>
<p>i have try to display Two list in two CEWP but it&#8217;s display in single CEWP.</p>
<p>Please Help Me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on STSADM Import Error by Scott</title>
		<link>http://scottprice.me/2009/05/02/stsadm-import-error/comment-page-1/#comment-338</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Tue, 07 Jul 2009 14:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://scottprice.me/?p=30#comment-338</guid>
		<description>Roger,
I can relate and I suspect there are probably a number of things that can create this error.  It seems to be a difficult one to isolate and took a couple of days working with a MS engineer to isolate my case.  If you have columns added to a custom content type, try removing them from the content type, removing the columns, recreating the columns, and then adding them back to the content type.  If that doesn't work, it is probably worth it to contact MS for support.</description>
		<content:encoded><![CDATA[<p>Roger,<br />
I can relate and I suspect there are probably a number of things that can create this error.  It seems to be a difficult one to isolate and took a couple of days working with a MS engineer to isolate my case.  If you have columns added to a custom content type, try removing them from the content type, removing the columns, recreating the columns, and then adding them back to the content type.  If that doesn&#8217;t work, it is probably worth it to contact MS for support.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on STSADM Import Error by Roger Willcocks</title>
		<link>http://scottprice.me/2009/05/02/stsadm-import-error/comment-page-1/#comment-337</link>
		<dc:creator>Roger Willcocks</dc:creator>
		<pubDate>Mon, 06 Jul 2009 01:40:23 +0000</pubDate>
		<guid isPermaLink="false">http://scottprice.me/?p=30#comment-337</guid>
		<description>I think I'm going mad.
I'm trying to track that "value cannot be null" error when calling GetListItems in lists.asmx.

And in desperation I tried this.
However, the XML from GetColums that I get does not contain a "Field List" (with or without a space in the name), nor a "web id" (with or without a space in the name)</description>
		<content:encoded><![CDATA[<p>I think I&#8217;m going mad.<br />
I&#8217;m trying to track that &#8220;value cannot be null&#8221; error when calling GetListItems in lists.asmx.</p>
<p>And in desperation I tried this.<br />
However, the XML from GetColums that I get does not contain a &#8220;Field List&#8221; (with or without a space in the name), nor a &#8220;web id&#8221; (with or without a space in the name)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
