<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://fbb.just4test.de/extern.php?action=feed&amp;tid=653&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Informationen für CMS/made simple / [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
		<link>http://www.cmsmadesimple.de/forum/viewtopic.php?id=653</link>
		<description><![CDATA[Die aktuellsten Beiträge in [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs.]]></description>
		<lastBuildDate>Wed, 01 Jun 2011 23:54:17 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=8075#p8075</link>
			<description><![CDATA[<div class="quotebox"><cite>nicmare schrieb:</cite><blockquote><div><p>mensch du bist aber hartnäckig. ist es so schwer da auf ne eigene lösung zu kommen?</p></div></blockquote></div><p>Jep, bin ich <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/smile.png" alt="smile" /><br />Ich hatte zwar eine Lösung im Kopf, die wäre aber nicht so sauber gewesen... deshalb wollte ich ja das mit den content tabs, da ich denke, dass das die bessere Lösung sei. Außerdem kann ich nicht programmieren, sorry.</p><p>Danke dir für deinen Vorschlag.</p>]]></description>
			<author><![CDATA[dummy@example.com (X-TREM)]]></author>
			<pubDate>Wed, 01 Jun 2011 23:54:17 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=8075#p8075</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=8070#p8070</link>
			<description><![CDATA[<p>mensch du bist aber hartnäckig. ist es so schwer da auf ne eigene lösung zu kommen? leider ist cyber anscheinend zZ extremst überlastet. aber nun gut, ich habe ja auch angekündigt, mich mal damit zu beschäftigen. Habe jetzt nicht die diversen Antworten verfolgt aber hier ein VORSCHLAG von meiner Seite. Ein ganz <strong>simpler und einfacher</strong> Ansatz</p><p><strong>Was du brauchst:</strong><br /><a href="http://dev.cmsmadesimple.org/projects/contentdump" rel="nofollow">content_dump</a></p><p><strong>Ansicht:</strong><br /><span class="postimg"><img src="http://dl.dropbox.com/u/139690/tabs.png" alt="screenshot" /></span></p><p><strong>Installation:</strong><br />content_dump in /plugins/ ablegen.<br />dann einen globalen content block namens &quot;tabs&quot; erstellen mit folgendem inhalt:</p><div class="codebox"><pre><code>&lt;div class=&quot;tabs&quot;&gt;
    &lt;div class=&quot;menu&quot;&gt;
{content_dump assign=&quot;dump2&quot; show_in_menu=&quot;force&quot; start_id=$content_id exclude=$content_id}
        &lt;ul class=&quot;clearfix&quot;&gt;
    {foreach from=$dump2 item=dump}
            &lt;li&gt;
                &lt;a href=&quot;{cms_selflink href=$dump-&gt;content-&gt;alias}&quot;&gt;
                    &lt;span&gt;{$dump-&gt;content-&gt;title|truncate:22:&#039;…&#039;:true}&lt;/span&gt;
                &lt;/a&gt;
            &lt;/li&gt;

    {/foreach}
        &lt;/ul&gt;
        &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
    &lt;/div&gt;
    &lt;div class=&quot;target&quot;&gt;&lt;/div&gt;
&lt;/div&gt;</code></pre></div><p>dann das CSS einfügen:</p><div class="codebox"><pre class="vscroll"><code>.tabs ul, .tabs li {
    background:none;
    padding:0;
    margin:0;
    list-style:none;}

.tabs li, .tabs li a, .tabs li a span {
    float:left;
    display:block;
    cursor:hand;
    cursor:pointer;}

.tabs a {
    text-decoration:none;
    color:#000;
    padding:4px 6px 4px 6px;
    background:#ccc;
    border:1px solid #000;
    margin:0 -1px 0 0;
    font-weight:bold;
    border-bottom:none;}

.tabs a:hover, .tabs li.active a {
    background:#f2f2f2;}

.tabs ul {
    padding:0 0 0 10px;}

.tabs .menu {
    border-bottom:1px solid #000;}

.tabs .target {
    border:1px solid #000;
    margin:10px 0 0 0;
    padding:10px;
    min-height:20px;
    clear:both;}

.clear {
    clear:both;}</code></pre></div><p>Ein neues Layout-Template anlegen namens &quot;Ajax&quot; mit folgendem Inhalt:</p><div class="codebox"><pre><code>{content}</code></pre></div><p>In dein vorhandenes Template fügst du noch das Javascript im &lt;head&gt; ein:</p><div class="codebox"><pre><code>&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
{literal}$(document).ready(function(){
    $(&quot;.tabs li a&quot;).click(function(e){
        e.preventDefault();
        $(&quot;.tabs .target&quot;).load(this.href);
        $(this).parent().siblings().removeClass(&quot;active&quot;);
        $(this).parent().addClass(&quot;active&quot;);
    });
});{/literal}
&lt;/script&gt;</code></pre></div><p>dann folgende Seitenstruktur anlegen:</p><div class="codebox"><pre><code>Zielseite (mit deinem eigenen Template)
- Unterseite (Option: nicht im Menü anzeigen, Template: Ajax)
- Unterseite (Option: nicht im Menü anzeigen, Template: Ajax)
- Unterseite (Option: nicht im Menü anzeigen, Template: Ajax)
- usw.</code></pre></div><p>nun brauchst du nur noch unseren GCB bei der Zielseite in den Inhalt einfügen:</p><div class="codebox"><pre><code>{global_content name=&#039;tabs&#039;}</code></pre></div><p>Jetzt sollten alle Unterseiten in Tabs auf der Zielseite aufgereiht sein.<br />Wenn du einen Tab klickst, wird der Inhalt in den Rahmen geladen.</p><p>Kann man natürlich noch um folgende Features ergänzen:</p><ol class="decimal"><li><p>Autoload für den ersten Tab (Lösung vorhanden)</p></li><li><p>Ladestatus (Lösung vorhanden)</p></li><li><p>welche Inhalte von der Quellseite geladen werden (fragmente) (Lösung vorhanden)</p></li><li><p>History und Bookmarking</p></li></ol>]]></description>
			<author><![CDATA[dummy@example.com (nicmare)]]></author>
			<pubDate>Wed, 01 Jun 2011 20:36:11 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=8070#p8070</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=8069#p8069</link>
			<description><![CDATA[<p>wie ist der Stand nach knapp 2 Monaten? <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/smile.png" alt="smile" /> </p><p>Hast du bereits Zeit finden können?</p>]]></description>
			<author><![CDATA[dummy@example.com (X-TREM)]]></author>
			<pubDate>Wed, 01 Jun 2011 19:18:26 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=8069#p8069</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=7443#p7443</link>
			<description><![CDATA[<p>Ich habs noch nicht vergessen ... aber Bezahlkunden gehen nun mal vor <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/cool.png" alt="cool" /> .</p>]]></description>
			<author><![CDATA[dummy@example.com (cyberman)]]></author>
			<pubDate>Tue, 17 May 2011 10:11:36 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=7443#p7443</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=7262#p7262</link>
			<description><![CDATA[<p>Hallo lieber cyberman,darf ich mal nachfragen was die content tabs so machen??;))</p>]]></description>
			<author><![CDATA[dummy@example.com (Bowler)]]></author>
			<pubDate>Wed, 11 May 2011 10:32:06 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=7262#p7262</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6967#p6967</link>
			<description><![CDATA[<p>Ah, da bist du ja <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/smile.png" alt="smile" /> Super, danke dir <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/smile.png" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (X-TREM)]]></author>
			<pubDate>Mon, 02 May 2011 17:44:45 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6967#p6967</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6935#p6935</link>
			<description><![CDATA[<p>Im Osterurlaub, OHNE CMSMS <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/wink.png" alt="wink" /> - machs die Woche fertig.</p>]]></description>
			<author><![CDATA[dummy@example.com (cyberman)]]></author>
			<pubDate>Mon, 02 May 2011 05:21:51 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6935#p6935</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6928#p6928</link>
			<description><![CDATA[<p>Cyberman, wo bist du?</p>]]></description>
			<author><![CDATA[dummy@example.com (X-TREM)]]></author>
			<pubDate>Sun, 01 May 2011 15:20:40 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6928#p6928</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6794#p6794</link>
			<description><![CDATA[<p>Die Geister die ich rief...&#160; <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/smile.png" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Wurst2008)]]></author>
			<pubDate>Wed, 27 Apr 2011 17:01:13 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6794#p6794</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6768#p6768</link>
			<description><![CDATA[<p>Hallo Cyberman,</p><p>wollte auch kurz mal nachfragen wie es mit dem How To aussieht? Hast du es schon fertig? Wenn nein, hast du im Fokus wie lange du dafür noch ca. brauchen wirst?</p><p>Danke.</p>]]></description>
			<author><![CDATA[dummy@example.com (X-TREM)]]></author>
			<pubDate>Wed, 27 Apr 2011 07:50:08 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6768#p6768</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6724#p6724</link>
			<description><![CDATA[<p>Hallo,cyberman.hoffe das du im kreise deine familie schöne ostern hastmöchte nur mal nachfragen was das How To für die taps im content machen.<br />glg</p>]]></description>
			<author><![CDATA[dummy@example.com (Bowler)]]></author>
			<pubDate>Mon, 25 Apr 2011 08:55:44 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6724#p6724</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6459#p6459</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>...meine Tochter (11 Wochen)</p></div></blockquote></div><p> Gratuliere! <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/smile.png" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Wurst2008)]]></author>
			<pubDate>Fri, 15 Apr 2011 16:38:38 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6459#p6459</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6455#p6455</link>
			<description><![CDATA[<p>nur keine Hektik. Je besser das How To wird, desto besser für alle <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/smile.png" alt="smile" /> Sag Bescheid, wenn du fertig bist. Evtl. schaffst du es bereits bis nächste Woche.</p>]]></description>
			<author><![CDATA[dummy@example.com (X-TREM)]]></author>
			<pubDate>Fri, 15 Apr 2011 13:30:50 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6455#p6455</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6446#p6446</link>
			<description><![CDATA[<p>Ist noch in Arbeit ... es sollte etwas allgemeiner anwendbar sein, aber meine Tochter (11 Wochen) hatte die letzten Tage etwas dagegen <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/ops.png" alt="ops" /> .</p><p>Sonst mach ich erst mal die kurze Variante.</p>]]></description>
			<author><![CDATA[dummy@example.com (cyberman)]]></author>
			<pubDate>Fri, 15 Apr 2011 06:12:11 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6446#p6446</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] [GELÖST] [GELÖST] [GELÖST] [GELÖST] Content Tabs]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6435#p6435</link>
			<description><![CDATA[<p>Hallo Cyberman,</p><p>hast du bereits was zusammen bekommen? Wäre super, wenn du dein versprochenes How To bereitstellen würdest <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/smile.png" alt="smile" /></p><p>Danke dir.</p>]]></description>
			<author><![CDATA[dummy@example.com (X-TREM)]]></author>
			<pubDate>Thu, 14 Apr 2011 17:30:42 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=6435#p6435</guid>
		</item>
	</channel>
</rss>
