<?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>Blog for the Web Programmers &#187; Typo3</title>
	<atom:link href="http://blog.chandanweb.com/topics/typo3/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.chandanweb.com</link>
	<description>A useful blog with code assitance on Typo3, Drupal, PHP, Apache, OpenSSL and PHP Frameworks</description>
	<lastBuildDate>Wed, 25 Jan 2012 08:35:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Displaying the actual filename when the same file is uploaded multiple times</title>
		<link>http://blog.chandanweb.com/typo3/displaying-the-actual-filename-when-the-same-file-is-uploaded-multiple-times</link>
		<comments>http://blog.chandanweb.com/typo3/displaying-the-actual-filename-when-the-same-file-is-uploaded-multiple-times#comments</comments>
		<pubDate>Thu, 12 Jan 2012 08:40:56 +0000</pubDate>
		<dc:creator>ajit</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[filename]]></category>
		<category><![CDATA[linkedLabel]]></category>
		<category><![CDATA[multiple uploads]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/displaying-the-actual-filename-when-the-same-file-is-uploaded-multiple-times</guid>
		<description><![CDATA[Hi! In Typo3 when we upload the same file (i.e. file with the same name) multiple times in a page, The same name is displayed on the page but the link to the files is diferrent as the file is renamed when it is uploaded. For example Say we upload a file name test.txt two [...]]]></description>
			<content:encoded><![CDATA[<p>Hi!</p>
<p>In Typo3 when we upload the same file (i.e. file with the same name) multiple times in a page, The same name is displayed on the page but the link to the files is diferrent as the file is renamed when it is uploaded.</p>
<p>For example</p>
<p>Say we upload a file name test.txt two times, the file is saved in the uploaded folder as</p>
<p>test.txt</p>
<p>test_01.txt</p>
<p>but on the page it displays as</p>
<p>test.txt (links to test.txt )</p>
<p>test.txt (links to test_01.txt )</p>
<p>So in case for the second time if we want to display the real file name to which it is linked,</p>
<p>i.e. test.txt (links to test_01.txt ) as test_01.txt (links to test_01.txt )</p>
<p>Add the following line in your SETUP CODE</p>
<p>tt_content.uploads.20.linkProc.removePrependedNumbers = 0</p>
<p>This will display the full file name&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/displaying-the-actual-filename-when-the-same-file-is-uploaded-multiple-times/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conditional menu based on menu page-id</title>
		<link>http://blog.chandanweb.com/typo3/conditional-menu-based-on-menu-page-id</link>
		<comments>http://blog.chandanweb.com/typo3/conditional-menu-based-on-menu-page-id#comments</comments>
		<pubDate>Tue, 27 Dec 2011 12:16:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[hmenu]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/conditional-menu-based-on-menu-page-id</guid>
		<description><![CDATA[Following code gives a nice way to have a custom content element as sub-menu item for each main menu item lib.customMenu = HMENU lib.customMenu { 1 = TMENU 1 { wrap = &#124; NO.allWrap = &#124; NO.stdWrap.htmlSpecialChars = 1 NO.after.cObject = COA NO.after.cObject { 20 = CASE 20 { key.field = uid default = RECORDS [...]]]></description>
			<content:encoded><![CDATA[<p>Following code gives a nice way to have a custom content element as sub-menu item for each main menu item</p>
<pre>
lib.customMenu = HMENU
lib.customMenu {
 1 = TMENU
 1  {
        wrap = |
</pre>
<pre>
        NO.allWrap = |
        NO.stdWrap.htmlSpecialChars = 1
        NO.after.cObject = COA
        NO.after.cObject {
            20 = CASE
            20 {
               key.field = uid
               default = RECORDS
               default.tables = tt_content
               default.conf.tt_content &lt; tt_content
               default.conf.tt_content.stdWrap.innerWrap &gt;               

               14 &lt; .default
               14.source = {$submenu_element_14}

               15 &lt; .default
               15.source = {$submenu_element_15}

               16 &lt; .default
               16.source = {$submenu_element_16}

               17 &lt; .default
               17.source = {$submenu_element_17}

            }            

        }
        ACT = 1
        ACT.after.cObject &lt; .NO.after.cObject
        ACT.allWrap = |
        ACT.ATagParams = class="act"
        ACT.stdWrap.htmlSpecialChars = 1

        CUR &lt; .ACT
        CUR.ATagParams = class="cur"
    }
}
</pre>
<p>This code cannot be used as it is, you will need to make sure the DHTML/JavaScript code for the sub menu items are configured accordingly.</p>
<p>Further References:</p>
<ol>
<li>[TYPO3-english] conditional menu based on menu page-id <br/><a href="http://lists.typo3.org/pipermail/typo3-english/2009-November/065557.html">http://lists.typo3.org/pipermail/typo3-english/2009-November/065557.html</a></li>
<li>[TYPO3-english] Custom class in tmenu according to uid page <br/><a href="http://lists.typo3.org/pipermail/typo3-english/2010-February/067336.html">http://lists.typo3.org/pipermail/typo3-english/2010-February/067336.html</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/conditional-menu-based-on-menu-page-id/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display the value  one object only when the other object value is faslse</title>
		<link>http://blog.chandanweb.com/typo3/display-the-value-one-object-only-when-the-other-object-value-is-faslse</link>
		<comments>http://blog.chandanweb.com/typo3/display-the-value-one-object-only-when-the-other-object-value-is-faslse#comments</comments>
		<pubDate>Wed, 07 Dec 2011 10:14:42 +0000</pubDate>
		<dc:creator>ajit</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[false]]></category>
		<category><![CDATA[Object]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/display-the-value-one-object-only-when-the-other-object-value-is-faslse</guid>
		<description><![CDATA[Hello! In some cases we want to display the value of object only when the value of the other object is false or null. For this to work we use the typoscript cobject with the negate option. The Following code depicts how to display the PREVIOUS and NEXT buttons in the typoscript prev/next menu. When [...]]]></description>
			<content:encoded><![CDATA[<p>Hello! </p>
<p>In some cases we want to display the value of object only when the value of the other object is false or null. For this to work we use the typoscript cobject with the negate option.</p>
<p>The Following code depicts how to display the PREVIOUS and NEXT buttons in the typoscript prev/next menu. When using the prev/next menu code the prev button does not appear on the first page and next button on the last. But for some purpose we need to have these buttons but without the link.</p>
<p>The following code helps to solve this problem.</p>
<p>lib.prevNext = COA <br />lib.prevNext{ <br />1 = TEXT <br />1.value = PREVIOUS <br />1.stdWrap.if.negate =1 <br />1.stdWrap.if.isTrue.cObject = HMENU <br />1.stdWrap.if.isTrue.cObject { <br />special = browse <br />special { <br />items = prev <br />items.prevnextToSection = 1 <br />prev.fields.title = PREVIOUS <br />} </p>
<p>1 = TMENU <br />1.NO { <br />linkWrap = &lt;div class=&#8221;button&#8221;&gt; | &lt;/div&gt; <br />stdWrap.htmlSpecialChars = 1 <br />} <br />} </p>
<p>2 = HMENU <br />2{ <br />special = browse <br />special { <br />items = prev|next <br />items.prevnextToSection = 1 <br />prev.fields.title = PREVIOUS <br />next.fields.title = NEXT <br />} </p>
<p>1 = TMENU <br />1.NO { <br />linkWrap = &lt;div class=&#8221;button&#8221;&gt; | &lt;/div&gt; <br />stdWrap.htmlSpecialChars = 1 <br />} <br />} </p>
<p>3 = TEXT <br />3.value = NEXT <br />3.stdWrap.if.negate =1 <br />3.stdWrap.if.isTrue.cObject = HMENU <br />3.stdWrap.if.isTrue.cObject { <br />special = browse <br />special { <br />items = next <br />items.prevnextToSection = 1 <br />prev.fields.title = PREVIOUS <br />} </p>
<p>1 = TMENU <br />1.NO { <br />linkWrap = &lt;div class=&#8221;button&#8221;&gt; | &lt;/div&gt; <br />stdWrap.htmlSpecialChars = 1 <br />} <br />} <br />}</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/display-the-value-one-object-only-when-the-other-object-value-is-faslse/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display the page when it is completely Loaded</title>
		<link>http://blog.chandanweb.com/typo3/display-the-page-when-it-is-completely-loaded</link>
		<comments>http://blog.chandanweb.com/typo3/display-the-page-when-it-is-completely-loaded#comments</comments>
		<pubDate>Wed, 07 Dec 2011 09:47:25 +0000</pubDate>
		<dc:creator>ajit</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[complete load]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[onload]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/display-the-page-when-it-is-completely-loaded</guid>
		<description><![CDATA[Hello All! The following code helps you to display the contents of the page after it is completely loaded. It uses the JQuery for this purpose. Initially wrap the whole page in a &#60;div&#62; tag and hide it using CSS. The HTML code is as follows&#8230;. &#60;html&#62; &#60;title&#62;&#8230;..&#60;/title&#62; &#60;body&#62; &#60;div id=&#8221;my_testid&#8221;&#62; . . . . [...]]]></description>
			<content:encoded><![CDATA[<p>Hello All! </p>
<p>The following code helps you to display the contents of the page after it is completely loaded. It uses the JQuery for this purpose. </p>
<p>Initially wrap the whole page in a &lt;div&gt; tag and hide it using CSS. </p>
<p>The HTML code is as follows&#8230;. <br />&lt;html&gt; <br />&lt;title&gt;&#8230;..&lt;/title&gt; <br />&lt;body&gt; <br />&lt;div id=&#8221;my_testid&#8221;&gt; <br />. <br />. <br />. <br />. <br />. <br />&lt;/div&gt; <br />&lt;/body&gt; <br />&lt;/html&gt; </p>
<p>The Css for the div is as follows <br />#my_testid{ <br />. <br />. <br />. <br />display:none; <br />} </p>
<p>Now Using the jQuery change the display property when the page is completely Loaded. For this to work we have &#8220;window.onload&#8221; option in jQuery <br />&lt;script type=&#8221;text/javascript&#8221;&gt; <br />jQuery(document).ready(function(){ <br />window.onload = function (){ jQuery(&#8216;#my_testid&#8217;).show(); }; <br />}); <br />&lt;/script&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/display-the-page-when-it-is-completely-loaded/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display Image when both path and file name are in two fields</title>
		<link>http://blog.chandanweb.com/typo3/display-image-when-both-path-and-file-name-are-in-two-fields</link>
		<comments>http://blog.chandanweb.com/typo3/display-image-when-both-path-and-file-name-are-in-two-fields#comments</comments>
		<pubDate>Wed, 16 Nov 2011 11:30:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[IMAGE with 2 field]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/display-image-when-both-path-and-file-name-are-in-two-fields</guid>
		<description><![CDATA[The following code gives an overview of how to display an IMAGe when 2 fields are involved. That is one contains the image path &#8220;fileadmin/templates/imgs/&#8221; and the other field has the image name &#8220;mylogo.png&#8221; 10 = IMAGE10 { file.import { cObject = COA cObject { 10 = TEXT 10.data = field:image_path 20 = TEXT 20.data [...]]]></description>
			<content:encoded><![CDATA[<p>The following code gives an overview of how to display an IMAGe when 2 fields are involved. <br/>That is one contains the image path &#8220;fileadmin/templates/imgs/&#8221; and the other field has the image name &#8220;mylogo.png&#8221;</p>
<blockquote style="MARGIN-RIGHT: 0px" dir="ltr">
<pre>
10 = IMAGE<br/>10 {<br/>    file.import {<br/>         cObject = COA<br/>         cObject {<br/>             10 = TEXT<br/>              10.data = field:image_path<br/>             20 = TEXT<br/>             20.data = field:image_name<br/>         }<br/>    }<br/>}
</pre>
</blockquote>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/display-image-when-both-path-and-file-name-are-in-two-fields/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Translate field in FCE</title>
		<link>http://blog.chandanweb.com/typo3/translate-field-in-fce</link>
		<comments>http://blog.chandanweb.com/typo3/translate-field-in-fce#comments</comments>
		<pubDate>Fri, 16 Sep 2011 07:30:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[FCE]]></category>
		<category><![CDATA[fce translation]]></category>
		<category><![CDATA[translate field]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/translate-field-in-fce</guid>
		<description><![CDATA[Generally FCE cannot be translated, like normal tables. How we may use two fields like field_fr, field_en, and then display the related info according to the language. EX: 10 = COA 10 { #Translation for primary language (L=0) 30 = TEXT 30.field = field_slide_info 30.stdWrap.wrap = &#60;p&#62;&#124;&#60;/p&#62; 30.if { value = 0 equals.data = gp:L [...]]]></description>
			<content:encoded><![CDATA[<p>Generally FCE cannot be translated, like normal tables. How we may use two fields like field_fr, field_en, and then display the related info according to the language.</p>
<blockquote style="MARGIN-RIGHT: 0px" dir="ltr">
<pre>

EX:
      <br/>10 = COA     <br/>10 {     <br/>    #Translation for primary language (L=0)
    30 = TEXT
    30.field = field_slide_info
    30.stdWrap.wrap = &lt;p&gt;|&lt;/p&gt;
    30.if {
        value = 0
        equals.data = gp:L
    }<br/></pre>
<pre>
    #Translation for second language (L=1)<br/>    40 = TEXT
    40.field = field_slide_info_en
    40.stdWrap.wrap = &lt;p&gt;|&lt;/p&gt;
    40.if {
        value = 1
        equals.data = gp:L
    }
}
</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/translate-field-in-fce/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tesseract Tips / Notes</title>
		<link>http://blog.chandanweb.com/typo3/tesseract-tips-notes</link>
		<comments>http://blog.chandanweb.com/typo3/tesseract-tips-notes#comments</comments>
		<pubDate>Fri, 16 Sep 2011 06:30:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[avoid translation of field]]></category>
		<category><![CDATA[l10n_mode]]></category>
		<category><![CDATA[TCA]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/tesseract-tips-notes</guid>
		<description><![CDATA[DATA FILTER: Clear Filter/Query Cache: In some situations when &#8220;Additional SQL&#8221; field is cleared, the dataquery may still be using the cached value from this field. In such case we should add following URL Parameter, which informs DataQuery to re-build the query from scratch. EX: www.example.com/?clear_cache = 1 Using main.subtable: When we wish to apply [...]]]></description>
			<content:encoded><![CDATA[<p><strong>DATA FILTER:</strong></p>
<p><strong>Clear Filter/Query Cache:</strong> In some situations when &#8220;Additional SQL&#8221; field is cleared, the dataquery may still be using the cached value from this field. <br/>In such case we should add following URL Parameter, which informs DataQuery to re-build the query from scratch.</p>
<blockquote style="MARGIN-RIGHT: 0px" dir="ltr"><p>EX: <br/><a href="http://www.example.com/?clear_cache">www.example.com/?clear_cache</a> = 1</p>
</blockquote>
<p><strong>Using main.subtable:</strong> When we wish to apply a specific condition to a sub-table, the query is applied on the JOIN itself:</p>
<blockquote style="MARGIN-RIGHT: 0px" dir="ltr"><p>EX 1: <br/>subtable.uid = vars:event <br/>maintable.uid = varsproject <br/><br/>This is translated to someting like this: <br/><br/>SELECT maintable.*, subtable.* <br/>FROM maintable JOIN subtable <br/>ON maintable.event_id = subtable.uid AND subtable.uid = 20 <br/>WHERE <br/>maintable.uid = 45 <br/><br/><strong>However, if we add main.subtable.uid&#8230; the query gets converted to as shown below:</strong> <br/>EX 2: <br/>main.subtable.uid = vars:event <br/>maintable.uid = varsproject <br/><br/>This is translated to someting like this: <br/><br/>SELECT maintable.*, subtable.* <br/>FROM maintable JOIN subtable <br/>ON maintable.event_id = subtable.uid <br/>WHERE <br/>subtable.uid = 20 AND maintable.uid = 45 <br/></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/tesseract-tips-notes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avoid translation of field using TCA and  l10n_mode</title>
		<link>http://blog.chandanweb.com/typo3/avoid-translation-of-field-using-tca-and-l10n_mode</link>
		<comments>http://blog.chandanweb.com/typo3/avoid-translation-of-field-using-tca-and-l10n_mode#comments</comments>
		<pubDate>Fri, 16 Sep 2011 04:54:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[avoid translation of field]]></category>
		<category><![CDATA[l10n_mode]]></category>
		<category><![CDATA[TCA]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/avoid-translation-of-field-using-tca-and-l10n_mode</guid>
		<description><![CDATA[For a field which must not really be translated (such as a event date) l10n_mode : exclude ( do not translate this) l10n_display : defaultAsReadOnly ( show field as read only in translated records) This way translators see the field data, but can&#8217;t change it. This is the most logical for such a field. Please [...]]]></description>
			<content:encoded><![CDATA[<p>For a field which must not really be translated (such as a event date)</p>
<blockquote><p>l10n_mode : exclude ( do not translate this) <br/>l10n_display : defaultAsReadOnly ( show field as read only in translated <br/>records)</p>
</blockquote>
<p>This way translators see the field data, but can&#8217;t change it. This is the most logical for such a field. <br/>Please refer doc_core_tca for more details about these two settings.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/avoid-translation-of-field-using-tca-and-l10n_mode/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Displaying page title : Various methods</title>
		<link>http://blog.chandanweb.com/typo3/displaying-page-title-various-methods</link>
		<comments>http://blog.chandanweb.com/typo3/displaying-page-title-various-methods#comments</comments>
		<pubDate>Mon, 12 Sep 2011 15:10:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[pagetitle]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/displaying-page-title-various-methods</guid>
		<description><![CDATA[Getting page title for a specific page (using uid) METHOD 1: temp.pTitle = HMENU temp.pTitle { special = list special.value = {$my_page_uid} 1 = TMENU 1 { NO { doNotLinkIt = 1 } } } METHOD 2: (The localization may not work fine in the below method) lib.pagetitle = RECORDS lib.pagetitle { source.data = page:uid [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Getting page title for a specific page (using uid)</strong></p>
<p><strong>METHOD 1:</strong></p>
<blockquote><p>temp.pTitle = HMENU <br/>temp.pTitle { <br/>special = list <br/>special.value = {$my_page_uid} <br/>1 = TMENU <br/>1 { <br/>NO { <br/>doNotLinkIt = 1 <br/>} <br/>} <br/>}</p>
</blockquote>
<p><strong>METHOD 2: (The localization may not work fine in the below method)</strong></p>
<blockquote><p>lib.pagetitle = RECORDS <br/>lib.pagetitle { <br/>source.data = page:uid <br/>tables = pages <br/>conf.pages = TEXT <br/>conf.pages.field = nav_title <br/>}</p>
</blockquote>
<p><strong>Getting Current Page Title:</strong></p>
<blockquote><p>lib.pagetitle = TEXT <br/>lib.pagetitle.field=title <br/></p>
</blockquote>
<p><strong>Page title of parent page:</strong></p>
<blockquote><p>lib.pagetitle = TEXT <br/>lib.pagetitle.data = leveltitle:-2 <br/><strong>OR <br/></strong> lib.pagetitle = TEXT <br/>lib.pagetitle.data = leveltitle:-3</p>
</blockquote>
<p><strong>Inserting page title within a HMENU</strong></p>
<blockquote><p>temp_pagetitle = TEXT <br/>temp_pagetitle.data = leveltitle:-2</p>
<p>leftMenu = HMENU <br/>leftMenu.stdWrap.preCObject &lt; temp.leftmenu_pagetitle <br/>leftMenu.1 = TMENU <br/>leftMenu.1.wrap = &lt;ul class=&#8221;cw_leftmenu&#8221;&gt;|&lt;/ul&gt; <br/>leftMenu.1.NO.wrapItemAndSub = &lt;li&gt;|&lt;/li&gt; <br/>leftMenu.1.ACT = 1 <br/>leftMenu.1.ACT.wrapItemAndSub = &lt;li&gt;|&lt;/li&gt; <br/>leftMenu.1.ACT.allWrap = &lt;span class=&#8221;active_menu&#8221;&gt;|&lt;/span&gt; <br/>leftMenu.1.CUR = 1 <br/>leftMenu.1.CUR.allWrap = &lt;span class=&#8221;cur_menu&#8221;&gt;|&lt;/span&gt; <br/>leftMenu.2 &lt; .1 <br/>leftMenu.3 &lt; .2</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/displaying-page-title-various-methods/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Customize RTE for table fields in Typo3 Extensions ?</title>
		<link>http://blog.chandanweb.com/typo3/how-to-customize-rte-for-table-fields-in-typo3-extensions</link>
		<comments>http://blog.chandanweb.com/typo3/how-to-customize-rte-for-table-fields-in-typo3-extensions#comments</comments>
		<pubDate>Wed, 07 Sep 2011 05:49:42 +0000</pubDate>
		<dc:creator>Ganybhat</dc:creator>
				<category><![CDATA[Extension Programming]]></category>
		<category><![CDATA[Typo3]]></category>
		<category><![CDATA[customise]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[RTE]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/?p=306</guid>
		<description><![CDATA[In the ext_localconf.php file of the extension, add the below code. t3lib_extMgm::addUserTSConfig(&#8216; page.RTE.config.your_table_name.field_name.showButtons = bold, italic, orderedlist, unorderedlist &#8216;);]]></description>
			<content:encoded><![CDATA[<p>In the ext_localconf.php file of the extension, add the below code.</p>
<blockquote><p>t3lib_extMgm::addUserTSConfig(&#8216;<br />
page.RTE.config.your_table_name.field_name.showButtons = bold, italic, orderedlist, unorderedlist<br />
&#8216;);</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/how-to-customize-rte-for-table-fields-in-typo3-extensions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

