<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SharePoint Customization Lessons Learned From the Past 2 Weeks</title>
	<atom:link href="http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/</link>
	<description>Stories from a SharePoint Engineer that isn&#039;t afraid of Visual Studio.</description>
	<lastBuildDate>Tue, 07 Sep 2010 19:15:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Eswar</title>
		<link>http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-3788</link>
		<dc:creator>Eswar</dc:creator>
		<pubDate>Wed, 13 Jan 2010 22:47:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-3788</guid>
		<description>Henry,

Can you post how you got the accordion to work using Mootools in Sharepoint ?

Thanks</description>
		<content:encoded><![CDATA[<p>Henry,</p>
<p>Can you post how you got the accordion to work using Mootools in Sharepoint ?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-3761</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Fri, 08 Jan 2010 16:10:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-3761</guid>
		<description>To disable an element: 

$(&#039;#myElement&#039;).attr(&#039;disabled&#039;, &#039;disabled&#039;);

to enable

$(&#039;#myElement&#039;).attr(&#039;disabled&#039;, &#039;&#039;);

AP</description>
		<content:encoded><![CDATA[<p>To disable an element: </p>
<p>$(&#8216;#myElement&#8217;).attr(&#8216;disabled&#8217;, &#8216;disabled&#8217;);</p>
<p>to enable</p>
<p>$(&#8216;#myElement&#8217;).attr(&#8216;disabled&#8217;, &#8221;);</p>
<p>AP</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-3760</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Fri, 08 Jan 2010 16:07:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-3760</guid>
		<description>For a quick fix (kind of a hack...) I just used a Content Editor Web Part and some jQuery:

$(&quot;a&quot;).click(function(e){
	e.preventDefault();
	window.open($(this).attr(&#039;href&#039;));
});

Obviously this will open all anchored hrefs in a new window but you get the idea :)

Andrew</description>
		<content:encoded><![CDATA[<p>For a quick fix (kind of a hack&#8230;) I just used a Content Editor Web Part and some jQuery:</p>
<p>$(&#8220;a&#8221;).click(function(e){<br />
	e.preventDefault();<br />
	window.open($(this).attr(&#8216;href&#8217;));<br />
});</p>
<p>Obviously this will open all anchored hrefs in a new window but you get the idea <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mthuras</title>
		<link>http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-3686</link>
		<dc:creator>Mthuras</dc:creator>
		<pubDate>Thu, 05 Nov 2009 07:56:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-3686</guid>
		<description>Wow, interesting Henry. Please take me through that process of greying those columns with jQuery.</description>
		<content:encoded><![CDATA[<p>Wow, interesting Henry. Please take me through that process of greying those columns with jQuery.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henry</title>
		<link>http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-3680</link>
		<dc:creator>Henry</dc:creator>
		<pubDate>Wed, 04 Nov 2009 18:56:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-3680</guid>
		<description>Hey Mthuras, 

1. I don&#039;t think there&#039;s any setting for OOB web parts that would enable you to open links in new windows. Perhaps some jQuery would help but I&#039;m not sure. 

2. Probably with jQuery.

3. Yes, this can be done with an event receiver.</description>
		<content:encoded><![CDATA[<p>Hey Mthuras, </p>
<p>1. I don&#8217;t think there&#8217;s any setting for OOB web parts that would enable you to open links in new windows. Perhaps some jQuery would help but I&#8217;m not sure. </p>
<p>2. Probably with jQuery.</p>
<p>3. Yes, this can be done with an event receiver.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mthuras</title>
		<link>http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-3677</link>
		<dc:creator>Mthuras</dc:creator>
		<pubDate>Wed, 04 Nov 2009 14:50:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-3677</guid>
		<description>1. With regards to the WebPart, if I click on the link it opens the page in the webpart window, how do I get this to open in a new window?
2. Do you know if it is possible to ‘Grey’ out certain columns in a task list so that only certain users can update them?  
3. Do you know if when you create a new item in a task list if SP can automatically create a document workspace for this task with all the information (document library, structure, etc) from the other workspace?</description>
		<content:encoded><![CDATA[<p>1. With regards to the WebPart, if I click on the link it opens the page in the webpart window, how do I get this to open in a new window?<br />
2. Do you know if it is possible to ‘Grey’ out certain columns in a task list so that only certain users can update them?<br />
3. Do you know if when you create a new item in a task list if SP can automatically create a document workspace for this task with all the information (document library, structure, etc) from the other workspace?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henry</title>
		<link>http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-1312</link>
		<dc:creator>Henry</dc:creator>
		<pubDate>Fri, 03 Aug 2007 02:22:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-1312</guid>
		<description>I actually just uploaded the javascript file to a folder within the portal and had the javascript reference pointed at that location. I&#039;ve been meaning to do a write up on that, hopefully I can find some time next week.</description>
		<content:encoded><![CDATA[<p>I actually just uploaded the javascript file to a folder within the portal and had the javascript reference pointed at that location. I&#8217;ve been meaning to do a write up on that, hopefully I can find some time next week.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven</title>
		<link>http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-1285</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Wed, 01 Aug 2007 09:50:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-1285</guid>
		<description>I&#039;m interested in how you managed to attach the JS files to SharePoint.  Did you have to do these at a site level or on the server?</description>
		<content:encoded><![CDATA[<p>I&#8217;m interested in how you managed to attach the JS files to SharePoint.  Did you have to do these at a site level or on the server?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henry</title>
		<link>http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-949</link>
		<dc:creator>Henry</dc:creator>
		<pubDate>Wed, 13 Jun 2007 06:24:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-949</guid>
		<description>You&#039;re very welcome! I&#039;ve only used the Accordion script for custom navigations. Haven&#039;t had a chance to try any of the other scripts yet though. I&#039;ll post some screenshots in the next couple of days of what I had done.</description>
		<content:encoded><![CDATA[<p>You&#8217;re very welcome! I&#8217;ve only used the Accordion script for custom navigations. Haven&#8217;t had a chance to try any of the other scripts yet though. I&#8217;ll post some screenshots in the next couple of days of what I had done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: S_K</title>
		<link>http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-948</link>
		<dc:creator>S_K</dc:creator>
		<pubDate>Wed, 13 Jun 2007 04:37:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.henryong.com/2007/05/30/sharepoint-customization-lessons-learned-from-the-past-2-weeks/#comment-948</guid>
		<description>Thank you for your post.  I am curious, how were you able to use mootools with SharePoint.  I would appreciate some details.  Thanks.</description>
		<content:encoded><![CDATA[<p>Thank you for your post.  I am curious, how were you able to use mootools with SharePoint.  I would appreciate some details.  Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
