<?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: Images slideshow in SharePoint 2007 using jQuery</title>
	<atom:link href="http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/</link>
	<description>Innovation Matters &#124; SharePoint Server MVP &#124; ISSN 2210-9390</description>
	<lastBuildDate>Thu, 09 Feb 2012 05:22:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/comment-page-3/#comment-117319</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Mon, 16 Jan 2012 08:55:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/#comment-117319</guid>
		<description>@Martin: I&#039;d suspect that the jQuery selector is picking too much (more than images). I&#039;d suggest you set a breakpoint in the JavaScript and try to find out what&#039;s going on.</description>
		<content:encoded><![CDATA[<p>@Martin: I&#039;d suspect that the jQuery selector is picking too much (more than images). I&#039;d suggest you set a breakpoint in the JavaScript and try to find out what&#039;s going on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Kliesek</title>
		<link>http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/comment-page-3/#comment-116906</link>
		<dc:creator>Martin Kliesek</dc:creator>
		<pubDate>Fri, 13 Jan 2012 20:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/#comment-116906</guid>
		<description>Hi Waldek,

first of all thanks for the great code, really appreciate it.
I&#039;m getting one small issue with the slideshow, it displays pictures just fine, however, after a picture fades, a box with red cross is displayed instead of another picture(you know the usual icon, that is diplayed if you for example disable picture loading in a browser etc.), then again a picture loads propperly, and continues in this pattern.
I pasted your code without any changes, and tried this with multiple sets of pictures, still the same. Do you have any suggestions on how to fix this issue?</description>
		<content:encoded><![CDATA[<p>Hi Waldek,</p>
<p>first of all thanks for the great code, really appreciate it.<br />
I&#039;m getting one small issue with the slideshow, it displays pictures just fine, however, after a picture fades, a box with red cross is displayed instead of another picture(you know the usual icon, that is diplayed if you for example disable picture loading in a browser etc.), then again a picture loads propperly, and continues in this pattern.<br />
I pasted your code without any changes, and tried this with multiple sets of pictures, still the same. Do you have any suggestions on how to fix this issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark</title>
		<link>http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/comment-page-3/#comment-108089</link>
		<dc:creator>mark</dc:creator>
		<pubDate>Thu, 08 Dec 2011 23:54:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/#comment-108089</guid>
		<description>I&#039;ve gotten this excellent code to work. 

As for the issue  that several commenters have mentioned of making each image in the slideshow have a link, since I created a new picture library, I had to add a new column (Link) to hold the link I want for each image.

But the above code is written for a summary view of the list webpart for whatever image library you&#039;re using. The table class ms-summarystandardbody applies to summary views, which don&#039;t show many columns.

I made a list view of my image library which DOES display both the thumbnail (which I think is needed for this javascript?) and my Link column. However, when I apply my new view to the list webpart of the image library on the slideshow page, the slideshow breaks because the table class ms-summarystandardbody is no longer rendered on the page, so substitutions need to be made in the code.

When I view the source of my changed page, the table in question has two classes (I&#039;m not at my Sharepoint machine now, so I don&#039;t recall the names, though I believe one was ms-listviewtable and the other was something like ms-basicwebpart).

In any case, just to see if I could get the slideshow that was working with the summary view to work with my list view of the same library, I tried altering the two instances of &quot;table.ms-summarystandardbody td.ms-vb2 a&quot; to be &quot;table.ms-ms-listviewtable.ms-basicwebpart td.ms-vb2 a”, but that didn’t work (I of course used the real class names).

I tried several variations, but couldn’t get it to work. Yet. I’ll be back at it in a couple of days. And then when I get that to work, I’ll have to somehow grab the urls and then add them to the imagesList (or maybe a different urlList?) and then wrap the urls around the existing this.wrapper.html…</description>
		<content:encoded><![CDATA[<p>I&#039;ve gotten this excellent code to work. </p>
<p>As for the issue  that several commenters have mentioned of making each image in the slideshow have a link, since I created a new picture library, I had to add a new column (Link) to hold the link I want for each image.</p>
<p>But the above code is written for a summary view of the list webpart for whatever image library you&#039;re using. The table class ms-summarystandardbody applies to summary views, which don&#039;t show many columns.</p>
<p>I made a list view of my image library which DOES display both the thumbnail (which I think is needed for this javascript?) and my Link column. However, when I apply my new view to the list webpart of the image library on the slideshow page, the slideshow breaks because the table class ms-summarystandardbody is no longer rendered on the page, so substitutions need to be made in the code.</p>
<p>When I view the source of my changed page, the table in question has two classes (I&#039;m not at my Sharepoint machine now, so I don&#039;t recall the names, though I believe one was ms-listviewtable and the other was something like ms-basicwebpart).</p>
<p>In any case, just to see if I could get the slideshow that was working with the summary view to work with my list view of the same library, I tried altering the two instances of &#034;table.ms-summarystandardbody td.ms-vb2 a&#034; to be &#034;table.ms-ms-listviewtable.ms-basicwebpart td.ms-vb2 a”, but that didn’t work (I of course used the real class names).</p>
<p>I tried several variations, but couldn’t get it to work. Yet. I’ll be back at it in a couple of days. And then when I get that to work, I’ll have to somehow grab the urls and then add them to the imagesList (or maybe a different urlList?) and then wrap the urls around the existing this.wrapper.html…</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oliver V</title>
		<link>http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/comment-page-3/#comment-99055</link>
		<dc:creator>Oliver V</dc:creator>
		<pubDate>Thu, 27 Oct 2011 08:02:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/#comment-99055</guid>
		<description>Very neat script Waldek, hadn&#039;t thought of using the list web part as the slideshow itself! I stumbled into the majority of the issues listed by others though managed to overcome them with the assistance you&#039;ve so far provided.

There is one that I am vexed at though: I am unable to replicate Libbys random generation of a picture using the example you posted. I have linked the jquery.shuffle.js script into the code however am unable to shuffle imagesList - I suspect I may be in entirely the wrong ballpark?</description>
		<content:encoded><![CDATA[<p>Very neat script Waldek, hadn&#039;t thought of using the list web part as the slideshow itself! I stumbled into the majority of the issues listed by others though managed to overcome them with the assistance you&#039;ve so far provided.</p>
<p>There is one that I am vexed at though: I am unable to replicate Libbys random generation of a picture using the example you posted. I have linked the jquery.shuffle.js script into the code however am unable to shuffle imagesList &#8211; I suspect I may be in entirely the wrong ballpark?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/comment-page-3/#comment-93688</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Sat, 24 Sep 2011 10:26:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/#comment-93688</guid>
		<description>@Tiffany: you could either use CSS or hard-code the image size in the script in the line where the &lt;img/&gt; tag is being rendered:

this.wrapper.html(&#039;&lt;img src...</description>
		<content:encoded><![CDATA[<p>@Tiffany: you could either use CSS or hard-code the image size in the script in the line where the &lt;img/&gt; tag is being rendered:</p>
<p>this.wrapper.html(&#039;&lt;img src&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tiffany</title>
		<link>http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/comment-page-3/#comment-93621</link>
		<dc:creator>Tiffany</dc:creator>
		<pubDate>Fri, 23 Sep 2011 22:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/#comment-93621</guid>
		<description>Hi Waldek,
Thanks for the code.  Exactly what I was looking for.  I&#039;ve never used jQuery before.  Question:  I have images of different size.  How do I modify your code to set all images to a fixed size of 150px width and 100px width?</description>
		<content:encoded><![CDATA[<p>Hi Waldek,<br />
Thanks for the code.  Exactly what I was looking for.  I&#039;ve never used jQuery before.  Question:  I have images of different size.  How do I modify your code to set all images to a fixed size of 150px width and 100px width?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/comment-page-3/#comment-90709</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Sat, 03 Sep 2011 08:21:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/#comment-90709</guid>
		<description>@Mary: You should try some jQuery UI library extensions. It shouldn&#039;t be too difficult to add on top of the slideshow.</description>
		<content:encoded><![CDATA[<p>@Mary: You should try some jQuery UI library extensions. It shouldn&#039;t be too difficult to add on top of the slideshow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/comment-page-3/#comment-90707</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Sat, 03 Sep 2011 08:19:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/#comment-90707</guid>
		<description>@Ana: Are you using default branding or something customized? Please note that the jQuery selectors responsible for picking up images depend a lot on branding so if you&#039;re using a custom Master Page and/or Page Layout you would have to modify the selectors to support your branding.</description>
		<content:encoded><![CDATA[<p>@Ana: Are you using default branding or something customized? Please note that the jQuery selectors responsible for picking up images depend a lot on branding so if you&#039;re using a custom Master Page and/or Page Layout you would have to modify the selectors to support your branding.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mary</title>
		<link>http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/comment-page-3/#comment-90655</link>
		<dc:creator>Mary</dc:creator>
		<pubDate>Fri, 02 Sep 2011 20:21:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/#comment-90655</guid>
		<description>Hi Waldek, thank you for your help, I need to show the slide in the banner, any idea?</description>
		<content:encoded><![CDATA[<p>Hi Waldek, thank you for your help, I need to show the slide in the banner, any idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ana</title>
		<link>http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/comment-page-3/#comment-90636</link>
		<dc:creator>Ana</dc:creator>
		<pubDate>Fri, 02 Sep 2011 16:18:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/images-slideshow-sharepoint-2007-jquery/#comment-90636</guid>
		<description>Hi Waldek, thank you for help, I followed your steps but this code isn&#039;t working for me. I have a picture library, i have added a List View Web Part, after a Content Editor Web Part and finally past your code at Source Editor and Nothing, where is the wrong?</description>
		<content:encoded><![CDATA[<p>Hi Waldek, thank you for help, I followed your steps but this code isn&#039;t working for me. I have a picture library, i have added a List View Web Part, after a Content Editor Web Part and finally past your code at Source Editor and Nothing, where is the wrong?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

