﻿<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mark van Aalst &#187; Sitecore</title>
	<atom:link href="http://www.markvanaalst.net/tag/sitecore/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markvanaalst.net</link>
	<description>blogging about ASP.Net and web development related techniques</description>
	<lastBuildDate>Thu, 18 Feb 2010 18:12:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Using JQuery in custom fields</title>
		<link>http://www.markvanaalst.net/2010/02/18/using-jquery-in-custom-fields/</link>
		<comments>http://www.markvanaalst.net/2010/02/18/using-jquery-in-custom-fields/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 17:27:38 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Custom field]]></category>
		<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.markvanaalst.net/?p=99</guid>
		<description><![CDATA[At the moment I&#8217;m creating a custom field for tagging content items. I prototyped my custom field in html using JQuery. But when I wanted to convert this to the actual custom field I ran into a problem. As you might know Sitecore uses the Prototype library for all of it&#8217;s javascript. And prototype uses [...]]]></description>
			<content:encoded><![CDATA[<p>At the moment I&#8217;m creating a custom field for tagging content items. I prototyped my custom field in html using JQuery. But when I wanted to convert this to the actual custom field I ran into a problem. As you might know Sitecore uses the Prototype library for all of it&#8217;s javascript. And prototype uses the same dollar sign for all of its functions and variables as JQuery does. But JQuery provides a <a href="http://api.jquery.com/jQuery.noConflict/">noConflict</a> function where you can reassign the default $.</p>
<p>But then came the next challenge. I needed to use the noConflict function before all other javascript was called. Luckally I remembered that I have seen it before in other custom fields that are on the <a href="http://trac.sitecore.net/Index/">Shared Source</a> environment. So I started browsing the source code of Alexey Rusakov&#8217;s project (<a href="http://trac.sitecore.net/FieldTypes/">Sitecore Fieldtypes</a>) and I found the <a href="http://svn.sitecore.net/FieldTypes/trunk/sitecore%20modules/Outercore.FieldTypes/Common/InjectScripts.cs">InjectScripts</a> class which provides an option to add HTML to the section of the Content Editor. There I just added a reference to my JQuery library and off course calling the .noConflict funtion.</p>
<pre class="brush: csharp">

namespace Sitecore.SharedSource.Taxonomy
{
class AddScripts
{
public void Process(PipelineArgs args)
{
if (Sitecore.Context.ClientPage.IsEvent)
return;

HttpContext context = HttpContext.Current;
if (context == null)
return;

Page page = context.Handler as Page;
if (page == null)
return;

Assert.IsNotNull(page.Header, &quot;Content Editor &lt;head&gt; tag is missing runat=&#039;value&#039;&quot;);

string[] scripts = new[]
{
&quot;/sitecore modules/Shell/Taxonomy/jquery-1.4.1.min.js&quot;
};

foreach (string script in scripts)
{
page.Header.Controls.Add(new LiteralControl(&quot;&lt;script type=&#039;text/javascript&#039; language=&#039;javascript&#039; src=&#039;{0}&#039;&gt;&lt;/script&gt;&quot;.FormatWith(script)));
page.Header.Controls.Add(new LiteralControl(&quot;&lt;script type=\&quot;text/javascript\&quot;&gt;$.noConflict();&lt;/script&gt;&quot;));
}
}

}
}
</pre>
<p>So now I can call my JQuery by using &#8220;jQuery&#8221; in stead of &#8220;$&#8221; and the field works.</p>
<p>In my opinion this is just an example of how the Shared Source environment can help you. So if you have created a module, field or any thing else please put it on the Shared Source environment so others can benefit from it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markvanaalst.net/2010/02/18/using-jquery-in-custom-fields/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Restricting FieldEditor to specific template based items</title>
		<link>http://www.markvanaalst.net/2010/02/17/restricting-fieldeditor-to-specific-template-based-items/</link>
		<comments>http://www.markvanaalst.net/2010/02/17/restricting-fieldeditor-to-specific-template-based-items/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 11:28:04 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[FieldEditor]]></category>

		<guid isPermaLink="false">http://www.markvanaalst.net/?p=94</guid>
		<description><![CDATA[In Sitecore 6.2 it is possible to integrate FieldEditors. These are command which enables users edit item settings when they work in the page editor. Personally I think it is a great option when you want editors to only work within the Page Editor, and still let them edit settings. For the blog module that [...]]]></description>
			<content:encoded><![CDATA[<p>In Sitecore 6.2 it is possible to integrate FieldEditors. These are command which enables users edit item settings when they work in the page editor. Personally I think it is a great option when you want editors to only work within the Page Editor, and still let them edit settings.<br />
For the blog module that I created I implemented two FieldEditorCommands which let the user edit the blog and entry settings. When you use the default implementation as described in one of the cookbooks users can always click on the ribbon button regarding if the fields are on the currentitem. When those field don not exist on that item, they just get a empty popup.<br />
I decided to restrict the option only to items which are based on a certain template. You can do this the following way:<br />
You’ll need to override the Execute method in the your class (which overrides from Sitecore.Shell.Applications.WebEdit.Commands.FieldEditorCommand).</p>
<p>Then you isolate the function Context.ClientPage.Start in for instance an if statement.</p>
<p>Example:</p>
<pre class="brush: csharp">
if (context.Items[0].TemplateID == new ID(Settings.Default.EntryTemplateID))
{
Context.ClientPage.Start(this, &quot;StartFieldEditor&quot;, args);
}
else
{
Context.ClientPage.ClientResponse.Alert(&quot;Please select an entry first&quot;);
}
</pre>
<p>If anyone else has a better way to get the same results please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markvanaalst.net/2010/02/17/restricting-fieldeditor-to-specific-template-based-items/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Item Editor</title>
		<link>http://www.markvanaalst.net/2009/08/19/creating-a-item-editor/</link>
		<comments>http://www.markvanaalst.net/2009/08/19/creating-a-item-editor/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 11:55:03 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[item editor]]></category>
		<category><![CDATA[User Interface]]></category>

		<guid isPermaLink="false">http://www.markvanaalst.net/?p=22</guid>
		<description><![CDATA[For a blog module that I am developing I wanted to create an custom item editor. As you might know those are the &#8220;tabs&#8221; in the Content Editor. 1. Create a aspx file for the item editor user interface. 2. Select the core database in the desktop mode 3. Open the Content Editor and go to [...]]]></description>
			<content:encoded><![CDATA[<p>For a blog module that I am developing I wanted to create an custom item editor. As you might know those are the &#8220;tabs&#8221; in the Content Editor.</p>
<p>1. Create a aspx file for the item editor user interface.<br />
2. Select the core database in the desktop mode<br />
3. Open the Content Editor and go to the following path /Sitecore/Content/Applications/Content Editor/Editors/Items.<br />
4. You can create an item editor using the /Sitecore Client/Content Editor/Editor data template.<br />
5. You can give your item editor a name using the header field in the data section.<br />
6. In the icon field you can enter a path to the icon.<br />
7. In the url field you need to fill in the url to the aspx file created in step 1<br />
8. Save the item.<br />
9. Switch back to the master database.</p>
<p><span id="more-22"></span></p>
<p>Now we have created the item and the user-interface for the Item Editor. The next step is to assign the item editor to a template.</p>
<p>10. You can do this by setting it on the standard values or a individual item. Open the item in the content editor or template manager.<br />
11 . Click on the configure tab, go to the appearance group and click the editor command. A dialog will appear.<br />
12. In this dialog you can select the item editor you want to use, using the arrows you can sort.<br />
13. Finally close the dialog and save and publish.</p>
<p>Now when you select a item based on this template you see a item editor in the content editor with the title you filled in. You can edit the item editor using normal ASP.Net controls. This is a great solution for creating custom reports. But when you want to create an real custom editor functionality, you would like to use the default save button of the content editor. I might be confusing for a end-user to have two save button in one screen.</p>
<p>Unfortunately, Sitecore provides no default solution for capturing that event. Thanks to Eugene Omelnitsky from <a href="http://support.sitecore.net" target="_blank">Sitecore Support</a> (for pointing me in the right direction) I found a solution. You can adapt to the Save event using javascript. I then used <a title="JQuery" href="http://www.jquery.com" target="_blank">JQuery</a> to do an ajax call to the server and execute my save method.</p>
<p>This is the Javascript function which captures the save event and triggers an ajax call to my page method.</p>
<pre class="brush: jscript">
&lt;script type=&quot;text/javascript&quot;&gt;
function scGetFrameValue(value, request)
{
if (request.parameters == &quot;contenteditor:save&quot; || request.parameters == &quot;item:save&quot;)
{
$.ajax({
type: &quot;POST&quot;,
url: &quot;EntryEditor.aspx/SaveItem&quot;,
data: &quot;{ e: &#039;&quot; + $(&#039;#EditorIntroduction&#039;).val() + &quot;&#039;, title: &#039;&quot; + $(&#039;#tbTitle&#039;).val() + &quot;&#039;, content: &#039;&quot; + $(&#039;#EditorContent&#039;).val() + &quot;&#039; }&quot;,
contentType: &quot;application/json; charset=utf-8&quot;,
dataType: &quot;json&quot;,
success: function(msg) {
alert(&quot;succes!&quot;);
}
});
}
}
&lt;/script&gt;
</pre>
<p>And this is the method that I use server side</p>
<pre class="brush: csharp">
[System.Web.Services.WebMethod]
public static void SaveItem(string entryid, string introduction, string content, string title)
{
Database master = Factory.GetDatabase(&quot;master&quot;);

Item currentItem = ItemManager.GetItem(new ID(entryid), Sitecore.Context.Language, Sitecore.Data.Version.Latest, master);
Entry currentEntry = new Entry(currentItem);

currentEntry.BeginEdit();
currentEntry.Title = title;
currentEntry.Introduction = introduction;
currentEntry.Text = content;
currentEntry.EndEdit();
}
</pre>
<p>The code above is not perfect, it needs a bit more flexibility but for testing purposes it works.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markvanaalst.net/2009/08/19/creating-a-item-editor/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New search for SDN</title>
		<link>http://www.markvanaalst.net/2009/08/13/new-search-for-sdn/</link>
		<comments>http://www.markvanaalst.net/2009/08/13/new-search-for-sdn/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 11:47:02 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[SDN]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.markvanaalst.net/?p=59</guid>
		<description><![CDATA[I just noticed that Sitecore has greatly improved their search on SDN. You can now search through SDN, the shared source and Sitecore blogs.You even can filter your results by sdn sections, collections and datatypes. Only minor is that I can&#8217;t find a list of blogs they included in the search, so for that I [...]]]></description>
			<content:encoded><![CDATA[<p>I just noticed that Sitecore has greatly improved their <a href="http://sdn5.sitecore.net/searchresults.aspx?&amp;lcid=9&amp;q=&amp;t=120" target="_blank">search</a> on <a href="http://sdn.sitecore.net" target="_blank">SDN</a>. You can now search through SDN, the shared source and Sitecore blogs.You even can filter your results by sdn sections, collections and datatypes.</p>
<p><a href="http://www.markvanaalst.net/files/2009/08/sdn-search.jpg"><img class="alignnone size-full wp-image-60" title="sdn-search" src="http://www.markvanaalst.net/files/2009/08/sdn-search.jpg" alt="sdn-search" width="389" height="264" /></a></p>
<p>Only minor is that I can&#8217;t find a list of blogs they included in the search, so for that I will use my own <a href="http://www.google.com/coop/cse?cx=015305827533630957323:tnp7jv7rwps&amp;hl=nl" target="_blank">search</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markvanaalst.net/2009/08/13/new-search-for-sdn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maximum number of Sitecore query items</title>
		<link>http://www.markvanaalst.net/2008/11/05/maximum-number-of-sitecore-query-items/</link>
		<comments>http://www.markvanaalst.net/2008/11/05/maximum-number-of-sitecore-query-items/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 22:47:16 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[query]]></category>

		<guid isPermaLink="false">http://www.markvanaalst.com/?p=10</guid>
		<description><![CDATA[Last week I had some problems with an Sitecore Query. It didn&#8217;t show more than an fixed number of items. After some hard thinking I rembered that there is a web.config key called Query.MaxItem which, you might guessed it, controls the maximum number of results of an Sitecore Query.]]></description>
			<content:encoded><![CDATA[<p>Last week I had some problems with an Sitecore Query. It didn&#8217;t show more than an fixed number of items. After some hard thinking I rembered that there is a web.config key called Query.MaxItem which, you might guessed it, controls the maximum number of results of an Sitecore Query.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markvanaalst.net/2008/11/05/maximum-number-of-sitecore-query-items/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Using profile with the Rich Text Editor</title>
		<link>http://www.markvanaalst.net/2008/11/05/using-profile-with-the-rich-text-editor/</link>
		<comments>http://www.markvanaalst.net/2008/11/05/using-profile-with-the-rich-text-editor/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 17:36:39 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[profiles]]></category>
		<category><![CDATA[rich text editor]]></category>
		<category><![CDATA[Sitecore 6]]></category>

		<guid isPermaLink="false">http://www.markvanaalst.com/?p=8</guid>
		<description><![CDATA[Regularly I see topics on the SDN5 forums where people ask if it is possible to use a custom Rich Text editor. Wll, yes it is. You can use so called profiles with the Rich Text editor. These profiles are stored in the Core database under /sitecore/system/Settings/Html Editor Profiles/. There are some default pre-configurated profile [...]]]></description>
			<content:encoded><![CDATA[<p>Regularly I see topics on the SDN5 forums where people ask if it is possible to use a custom Rich Text editor. Wll, yes it is. You can use so called profiles with the Rich Text editor. These profiles are stored in the Core database under /sitecore/system/Settings/Html Editor Profiles/. There are some default pre-configurated profile which you van duplicate and customize to your own needs.</p>
<p>To use these profile you need to set the source value of an rich text field in your template.</p>
<p><a title="View image fullsize" href="http://www.markvanaalst.com/files/2008/11/sc6_rteprofile.gif"><img src="http://www.markvanaalst.com/files/2008/11/sc6_rteprofile.gif" alt="Sitecore 5 Rich Text Editor" width="422" height="73" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markvanaalst.net/2008/11/05/using-profile-with-the-rich-text-editor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Disable Sitecore publishing</title>
		<link>http://www.markvanaalst.net/2008/10/20/disable-sitecore-publishing/</link>
		<comments>http://www.markvanaalst.net/2008/10/20/disable-sitecore-publishing/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 22:49:45 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[publishing]]></category>

		<guid isPermaLink="false">http://www.markvanaalst.com/?p=11</guid>
		<description><![CDATA[To avoid problems during the development of an Sitecore site it could be useful to disable the Sitecore Publishing method. This can be done by editing the following web.config rule: &#60;site name=&#8221;website&#8221; virtualFolder=&#8221;/&#8221; physicalFolder=&#8221;/&#8221; rootPath=&#8221;/sitecore/content&#8221; startItem=&#8221;/home&#8221; database=&#8221;web&#8221; domain=&#8221;extranet&#8221; allowDebug=&#8221;true&#8221; cacheHtml=&#8221;true&#8221; htmlCacheSize=&#8221;10MB&#8221; enablePreview=&#8221;true&#8221; enableWebEdit=&#8221;true&#8221; enableDebugger=&#8221;true&#8221; disableClientData=&#8221;false&#8221;/&#62; These are the settings of your current site. The database [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">To avoid problems during the development of an Sitecore site it could be useful to disable the Sitecore Publishing method.</p>
<p>This can be done by editing the following web.config rule:</p>
<p>&lt;site name=&#8221;website&#8221; virtualFolder=&#8221;/&#8221; physicalFolder=&#8221;/&#8221; rootPath=&#8221;/sitecore/content&#8221; startItem=&#8221;/home&#8221; database=&#8221;web&#8221; domain=&#8221;extranet&#8221; allowDebug=&#8221;true&#8221; cacheHtml=&#8221;true&#8221; htmlCacheSize=&#8221;10MB&#8221; enablePreview=&#8221;true&#8221; enableWebEdit=&#8221;true&#8221; enableDebugger=&#8221;true&#8221; disableClientData=&#8221;false&#8221;/&gt;</p>
<p>These are the settings of your current site. The database key contains the database name from where the site needs to get its content. By setting this to the master database you do not need to publish your content anymore.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markvanaalst.net/2008/10/20/disable-sitecore-publishing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Copy &amp; Paste Layout Settings</title>
		<link>http://www.markvanaalst.net/2008/05/13/copy-paste-layout-settings/</link>
		<comments>http://www.markvanaalst.net/2008/05/13/copy-paste-layout-settings/#comments</comments>
		<pubDate>Tue, 13 May 2008 21:55:44 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[layout settings]]></category>

		<guid isPermaLink="false">http://www.markvanaalst.com/?p=6</guid>
		<description><![CDATA[While developing a Sitecore website there are lots of situations where you want multiple items to have the same Presentation Settings (renderings/sublayouts/layout). The ideal case is that your item Masters have these settings included but sometimes this isn&#8217;t the case. You can copy and paste the settings all at one time this way: 1. Navigate [...]]]></description>
			<content:encoded><![CDATA[<p>While developing a Sitecore website there are lots of situations where you want multiple items to have the same Presentation Settings (renderings/sublayouts/layout). The ideal case is that your item Masters have these settings included but sometimes this isn&#8217;t the case.</p>
<p>You can copy and paste the settings all at one time this way:</p>
<p>1. Navigate to the source item in the Content Editor (or Template Manager)</p>
<p>2. On the &#8216;View&#8217; Ribbon (Menu tab on top of the screen) select Standard Fields and Raw Values</p>
<p>3. Copy the (raw) Renderings field value (in the layout section of the content of the item)</p>
<p>4. Paste it into the destination item Renderings Field.</p>
<p>5. Disable Raw values and standard fields if necessary.</p>
<p>There also is a (unsupported) Sitecore Module for this action. Check it out <a class="externallink" title="Layout copy paste" href="http://sitecoresupport.blogspot.com/2008/01/dev-layout-chunk.html" target="_blank">Layout copy paste</a>here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markvanaalst.net/2008/05/13/copy-paste-layout-settings/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sitecore Validation Rules</title>
		<link>http://www.markvanaalst.net/2008/05/13/sitecore-validation-rules/</link>
		<comments>http://www.markvanaalst.net/2008/05/13/sitecore-validation-rules/#comments</comments>
		<pubDate>Tue, 13 May 2008 21:53:19 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.markvanaalst.com/?p=5</guid>
		<description><![CDATA[In Sitecore you can use validation rules. By default there are three validations rules on each template: Is Integer Max Length 40 Requirer You can modify or add new rules in the sitecore\system\settings\validation\field section in the content editor With the use of an multilist you can set the rules for your template. ATTENTION: Validation rules [...]]]></description>
			<content:encoded><![CDATA[<p>In Sitecore you can use validation rules. By default there are three validations rules on each template:</p>
<ul>
<li>Is Integer</li>
<li>Max Length 40</li>
<li>Requirer</li>
</ul>
<p>You can modify or add new rules in the sitecore\system\settings\validation\field section in the content editor</p>
<p>With the use of an multilist you can set the rules for your template.<br />
<img src="http://wiki.evident.nl/GetFile.aspx?File=ValidationRules.gif" alt="" width="559" height="241" /><br />
<strong><em>ATTENTION: Validation rules are already built in for version 5.3.1 but you can&#8217;t use them. Therefore you need to upgrade to version 5.3.2, which costs about an our. You can use regular expressions in version 5.3.1</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markvanaalst.net/2008/05/13/sitecore-validation-rules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rich Text Editor</title>
		<link>http://www.markvanaalst.net/2008/05/13/rich-text-editor/</link>
		<comments>http://www.markvanaalst.net/2008/05/13/rich-text-editor/#comments</comments>
		<pubDate>Tue, 13 May 2008 21:50:02 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Sitecore]]></category>

		<guid isPermaLink="false">http://www.markvanaalst.com/?p=4</guid>
		<description><![CDATA[One of the most annoying things about Sitecore is that the Rich Text Editor needs to be opent in an seperate web page dialog. But you can customize this behavior! Go to the Control Panel &#62; Preferences &#62; Change Your Application Options Tab Rich Text Editor Select editable You see that the Content Editor got [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most annoying things about Sitecore is that the Rich Text Editor needs to be opent in an seperate web page dialog.</p>
<p>But you can customize this behavior!</p>
<ul>
<li>Go to the Control Panel &gt; Preferences &gt; Change Your Application Options</li>
<li>Tab Rich Text Editor</li>
<li>Select editable</li>
</ul>
<p>You see that the Content Editor got expanded with the tab “Rich Text”</p>
<p><img src="http://wiki.evident.nl/GetFile.aspx?File=RichTextEditor.gif" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markvanaalst.net/2008/05/13/rich-text-editor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
