<?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: Creating your own wrapper controls in SharePoint 2007</title>
	<atom:link href="http://blog.mastykarz.nl/creating-your-own-wrapper-controls-in-sharepoint-2007/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mastykarz.nl/creating-your-own-wrapper-controls-in-sharepoint-2007/</link>
	<description>Innovation Matters &#124; SharePoint Server MVP &#124; ISSN 2210-9390</description>
	<lastBuildDate>Thu, 09 Sep 2010 10:31:18 +0200</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/creating-your-own-wrapper-controls-in-sharepoint-2007/comment-page-1/#comment-363</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Tue, 29 Apr 2008 15:20:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/03/30/creating-your-own-wrapper-controls-in-sharepoint-2007/#comment-363</guid>
		<description>Could you perhaps post a little code snippet to provide me some more insights in your approach?</description>
		<content:encoded><![CDATA[<p>Could you perhaps post a little code snippet to provide me some more insights in your approach?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mattias</title>
		<link>http://blog.mastykarz.nl/creating-your-own-wrapper-controls-in-sharepoint-2007/comment-page-1/#comment-361</link>
		<dc:creator>Mattias</dc:creator>
		<pubDate>Tue, 29 Apr 2008 10:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/03/30/creating-your-own-wrapper-controls-in-sharepoint-2007/#comment-361</guid>
		<description>Thanks for your quick response.
Yes that&#039;s right, I want to conditionally display links on the Site Settings page. I&#039;ve used the code in your article to conditionally add an item to the Site Actions menu and wanted to do the same thing on the Site Settings page. The problem is that the control class inheriting a Hyperlink control is not hit at all.</description>
		<content:encoded><![CDATA[<p>Thanks for your quick response.<br />
Yes that&#039;s right, I want to conditionally display links on the Site Settings page. I&#039;ve used the code in your article to conditionally add an item to the Site Actions menu and wanted to do the same thing on the Site Settings page. The problem is that the control class inheriting a Hyperlink control is not hit at all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/creating-your-own-wrapper-controls-in-sharepoint-2007/comment-page-1/#comment-359</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Tue, 29 Apr 2008 09:43:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/03/30/creating-your-own-wrapper-controls-in-sharepoint-2007/#comment-359</guid>
		<description>If I understand you correctly: you want to conditionally display links on the Site Settings page, right? If so, you don&#039;t really need a wrapper. I&#039;d rather implement the logic in the ControlAssembly. Wrapper controls, at least the way I see it, are meant to be used on pages (either application pages or Page Layouts). In your case, you&#039;re adding a link using the SharePoint framework.
Try to implement the logic without a wrapper control instead.</description>
		<content:encoded><![CDATA[<p>If I understand you correctly: you want to conditionally display links on the Site Settings page, right? If so, you don&#039;t really need a wrapper. I&#039;d rather implement the logic in the ControlAssembly. Wrapper controls, at least the way I see it, are meant to be used on pages (either application pages or Page Layouts). In your case, you&#039;re adding a link using the SharePoint framework.<br />
Try to implement the logic without a wrapper control instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mattias</title>
		<link>http://blog.mastykarz.nl/creating-your-own-wrapper-controls-in-sharepoint-2007/comment-page-1/#comment-358</link>
		<dc:creator>Mattias</dc:creator>
		<pubDate>Tue, 29 Apr 2008 09:22:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/03/30/creating-your-own-wrapper-controls-in-sharepoint-2007/#comment-358</guid>
		<description>Waldek, have you tried this approach for adding links to the Site Settings page in Sharepoint? I&#039;ve tried to add a link using CustomAction in a feature and pointed out assembly through the ControlAssembly attribute. The control class that is used in the ControlAssembly inherits a Hyperlink control. The problem is that the control class is never called.</description>
		<content:encoded><![CDATA[<p>Waldek, have you tried this approach for adding links to the Site Settings page in Sharepoint? I&#039;ve tried to add a link using CustomAction in a feature and pointed out assembly through the ControlAssembly attribute. The control class that is used in the ControlAssembly inherits a Hyperlink control. The problem is that the control class is never called.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/creating-your-own-wrapper-controls-in-sharepoint-2007/comment-page-1/#comment-316</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Sat, 12 Apr 2008 07:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/03/30/creating-your-own-wrapper-controls-in-sharepoint-2007/#comment-316</guid>
		<description>Hello Martin,

Thank you for your comment. As for your question: I haven&#039;t tried to use a wrapper in the SPD. It might fail working because it needs some Context specific information. Determining whether the wrapper is in edit mode in SPD or on a page, should solve the problem theoretically.</description>
		<content:encoded><![CDATA[<p>Hello Martin,</p>
<p>Thank you for your comment. As for your question: I haven&#039;t tried to use a wrapper in the SPD. It might fail working because it needs some Context specific information. Determining whether the wrapper is in edit mode in SPD or on a page, should solve the problem theoretically.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://blog.mastykarz.nl/creating-your-own-wrapper-controls-in-sharepoint-2007/comment-page-1/#comment-314</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Fri, 11 Apr 2008 20:38:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/2008/03/30/creating-your-own-wrapper-controls-in-sharepoint-2007/#comment-314</guid>
		<description>Waldek:

Thanks for the great article. However, have you tried this wrapping a WebPartZone in MOSS?  I have tried numerous ways and while it renders FINE in the browser, it does not render in SharePoint Designer - - which make PageLayout development and editing pages in SPD impossible.

Have you tried?

&lt;WebPartPages:WebPartZone runat=&quot;server&quot; Title=&quot;&quot; ID=&quot;RightColumn&quot; Orientation=&quot;Vertical&quot;&gt;


This fails to render in SharePoint designer every time.

Does this work for you?  Any ideas or work arounds?  thanks</description>
		<content:encoded><![CDATA[<p>Waldek:</p>
<p>Thanks for the great article. However, have you tried this wrapping a WebPartZone in MOSS?  I have tried numerous ways and while it renders FINE in the browser, it does not render in SharePoint Designer &#8211; - which make PageLayout development and editing pages in SPD impossible.</p>
<p>Have you tried?</p>
<p>&lt;WebPartPages:WebPartZone runat=&#034;server&#034; Title=&#034;" ID=&#034;RightColumn&#034; Orientation=&#034;Vertical&#034;&gt;</p>
<p>This fails to render in SharePoint designer every time.</p>
<p>Does this work for you?  Any ideas or work arounds?  thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
