Antworten auf deine Fragen:
Neues Thema erstellen

SpryTabbedPanels Navigation

sarah_cs4_purfan

CS4Neuling, wenig blicke

Hi, ich hab da eine Frage, vielleicht kann mir da einer von euch weiterhelfen.

ich habe auf meiner fan page

*Hartmut Engler Fans Starteite * Vom Fan für Fans*
eine SpryTabbedPanels Navigation, die läuft auch!
Was mich stört ist das egal auf welchem Tab ich zuletzt war der browser sobald die Seite geöffnet ist oben in der Navigation auf den ersten Tab zurückspringt und nicht in dem tab bleibt den ich ausgewählt habe!

Ich dachte da wäre vielleicht irgendwo ein (focus) oder so drauf, kann aber nichts so finden.
Das htmlS dazu sieht so aus.

*****

<div id="TabbedPanels1" class="TabbedPanels">
<ul class="TabbedPanelsTabGroup">
<li class="TabbedPanelsTab" tabindex="0">Biografie</li>
<li class="TabbedPanelsTab" tabindex="1">Discografie</li>
<li class="TabbedPanelsTab" tabindex="2">Presse</li>
<li class="TabbedPanelsTab" tabindex="3">Fotos</li>
<li class="TabbedPanelsTab" tabindex="4">Kreatives</li>
<li class="TabbedPanelsTab" tabindex="5">Just a singer</li>
<li class="TabbedPanelsTab" tabindex="6">Termine</li>
<li class="TabbedPanelsTab" tabindex="7">Gäste</li>
<li class="TabbedPanelsTab" tabindex="8">Links</li>
<li class="TabbedPanelsTab" tabindex="9">Archive</li>

</ul>
<div class="TabbedPanelsContentGroup">
<div class="TabbedPanelsContent"><a href="biobildtexthtt.html">Hartmuts Biografie in Bild und Text</a> | <a href="justpur.html">Biografie PUR in Bild und Text</a> </div>
<div class="TabbedPanelsContent"><a href="singles.html">Singles</a> | <a href="cds.html">Cds</a> | <a href="dvds.html">DVDs</a></div>
<div class="TabbedPanelsContent"><a href="presse.html">Presse</a> | <a href="internetberichte.html">Internet</a> | <a href="fansberichten.html">Fans berichten </a></div>
<div class="TabbedPanelsContent"><a href="pictures.html">Pictures</a> | <a href="livepics01.html">Live</a> | <a href="autogramme.html">Autogramme </a> | <a href="funny.html">Funny </a> | <a href="fanspics01.html">Fans </a> | <a href="bachstagepics.html">Bachstage </a> | <a href="tvpics.html">TV </a> | <a href="privat.html">Privat </a> | <a href="promo.html">Promo </a></div>
<div class="TabbedPanelsContent"><a href="desktopmotive.html">Desktop Motive </a> | <a href="Hartmut_Engler_kalender_2009.html">Desktop Kalender 09</a> |<a href="Hartmut_Engler_kalender_2009.html">Desktop Kalender 10</a> |<a href="Hartmut_Engler_kalender_2011.html">Desktop Kalender 11</a> | <a href="ecards.html">E-Cards</a></div>
<div class="TabbedPanelsContent"><a href="hartmut-engler.html">Solo</a> | <a href="hartmutsolo.html">Das Projekt</a> | <a href="texte.html">Texte </a> | <a href="diary.html">Was, wann, wo? </a> | <a href="fanstalk.html">Fans berichten </a> </div>
<div class="TabbedPanelsContent"><a href="purenews.html">PUR News / </a> | <a href="Hartmut_Engler_tv_termine_2011.html">TV-2011</a> | <a href="Hartmut_Engler_tour_termine_2011.html">Tourdaten 2011</a></div>
<div class="TabbedPanelsContent"><a href="gaestebuch.html">Gästebuch</a> | <a href="hartmutfrinds.html">Musikalische Gäste</a> | <a href="hartmutfilme.html">Film Gastspiele</a></div>
<div class="TabbedPanelsContent"><a href="links.html">Links</a></div>
<div class="TabbedPanelsContent"><a href="hartmut_engler_archiv2004.html">Archiv 2004</a> | <a href="hartmut_engler_archiv2005.html">Archiv 2005</a> | <a href="hartmut_engler_archiv2006.html">Archiv 2006</a> | <a href="hartmut_engler_archiv2007.html">Archiv 2007 </a> | <a href="hartmut_engler_archiv2009.html">Archiv 2009 </a> | <a href="hartmut_engler_archiv2010.html">Archiv 2010 </a></div>
</div>
</div>
******

das css
.TabbedPanels {
overflow: hidden;
width: 75%;
margin-top: 0px;
margin-right: auto;
margin-bottom: 0px;
margin-left: 0;
}

/* This is the selector for the TabGroup. The TabGroup container houses
* all of the tab buttons for each tabbed panel in the widget. This container
* does not contribute anything visually to the look of the widget for our
* default style.
*
* The name of the class ("TabbedPanelsTabGroup") used in this selector is not
* necessary to make the widget function. You can use any class name you
* want to style the TabGroup container.
*/
.TabbedPanelsTabGroup {
margin: 0px;
padding: 0px;
}

/* This is the selector for the TabbedPanelsTab. This container houses
* the title for the panel. This is also the tab "button" that the user clicks
* on to activate the corresponding content panel so that it appears on top
* of the other tabbed panels contained in the widget.
*
* For our default style, each tab is positioned relatively 1 pixel down from
* where it wold normally render. This allows each tab to overlap the content
* panel that renders below it. Each tab is rendered with a 1 pixel bottom
* border that has a color that matches the top border of the current content
* panel. This gives the appearance that the tab is being drawn behind the
* content panel.
*
* The name of the class ("TabbedPanelsTab") used in this selector is not
* necessary to make the widget function. You can use any class name you want
* to style this tab container.
*/
.TabbedPanelsTab {
position: relative;
top: 1px;
float: left;
background-color: #DADADA;
list-style: none;
border-left: solid 1px #CCC;
border-bottom: solid 1px #999;
border-top: solid 1px #999;
border-right: solid 1px #999;
-moz-user-select: none;
-khtml-user-select: none;
cursor: pointer;
font-family: Arial, Helvetica, sans-serif;
font-size: small;
font-weight: bold;
margin-top: 0px;
margin-right: 1px;
margin-bottom: 0px;
margin-left: 0px;
padding-top: 4px;
padding-right: 7px;
padding-bottom: 4px;
padding-left: 7px;
}

/* This selector is an example of how to change the appearnce of a tab button
* container as the mouse enters it. The class "TabbedPanelsTabHover" is
* programatically added and removed from the tab element as the mouse enters
* and exits the container.
*/
.TabbedPanelsTabHover {
background-color: #CCC;
}

/* This selector is an example of how to change the appearance of a tab button
* container after the user has clicked on it to activate a content panel.
* The class "TabbedPanelsTabSelected" is programatically added and removed
* from the tab element as the user clicks on the tab button containers in
* the widget.
*
* As mentioned above, for our default style, tab buttons are positioned
* 1 pixel down from where it would normally render. When the tab button is
* selected, we change its bottom border to match the background color of the
* content panel so that it looks like the tab is part of the content panel.
*/
.TabbedPanelsTabSelected {
background-color: #F6F6F6;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #999;
}

/* This selector is an example of how to make a link inside of a tab button
* look like normal text. Users may want to use links inside of a tab button
* so that when it gets focus, the text *inside* the tab button gets a focus
* ring around it, instead of the focus ring around the entire tab.
*/
.TabbedPanelsTab a {
color: black;
text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
* all of the content panels for each tabbed panel in the widget. For our
* default style, this container provides the background color and borders that
* surround the content.
*
* The name of the class ("TabbedPanelsContentGroup") used in this selector is
* not necessary to make the widget function. You can use any class name you
* want to style the ContentGroup container.
*/
.TabbedPanelsContentGroup {
text-align:left;
border-left: solid 1px #CCC;
border-bottom: solid 1px #CCC;
border-top: solid 1px #999;
border-right: solid 1px #999;
background-color: #F6F6F6;
font-weight: bold;
clear: both;
}

/* This is the selector for the Content panel. The Content panel holds the
* content for a single tabbed panel. For our default style, this container
* provides some padding, so that the content is not pushed up against the
* widget borders.
*
* The name of the class ("TabbedPanelsContent") used in this selector is
* not necessary to make the widget function. You can use any class name you
* want to style the Content container.
*/
.TabbedPanelsContent {
text-align:left;
overflow: hidden;
padding: 4px;
}

/* This selector is an example of how to change the appearnce of the currently
* active container panel. The class "TabbedPanelsContentVisible" is
* programatically added and removed from the content element as the panel
* is activated/deactivated.
*/
.TabbedPanelsContentVisible {
}

/* Vertical Tabbed Panels
*
* The following rules override some of the default rules above so that the
* TabbedPanels widget renders with its tab buttons along the left side of
* the currently active content panel.
*
* With the rules defined below, the only change that will have to be made
* to switch a horizontal tabbed panels widget to a vertical tabbed panels
* widget, is to use the "VTabbedPanels" class on the top-level widget
* container element, instead of "TabbedPanels".
*/

.VTabbedPanels {
overflow: hidden;
zoom: 1;
}

/* This selector floats the TabGroup so that the tab buttons it contains
* render to the left of the active content panel. A border is drawn around
* the group container to make it look like a list container.
*/
.VTabbedPanels .TabbedPanelsTabGroup {
float: left;
width: 10em;
height: 20em;
background-color: #F6F6F6;
position: relative;
border-top: solid 1px #999;
border-right: solid 1px #999;
border-left: solid 1px #CCC;
border-bottom: solid 1px #CCC;
}

/* This selector disables the float property that is placed on each tab button
* by the default TabbedPanelsTab selector rule above. It also draws a bottom
* border for the tab. The tab button will get its left and right border from
* the TabGroup, and its top border from the TabGroup or tab button above it.
*/
.VTabbedPanels .TabbedPanelsTab {
float: none;
margin: 0px;
border-top: none;
border-left: none;
border-right: none;
}

/* This selector disables the float property that is placed on each tab button
* by the default TabbedPanelsTab selector rule above. It also draws a bottom
* border for the tab. The tab button will get its left and right border from
* the TabGroup, and its top border from the TabGroup or tab button above it.
*/
.VTabbedPanels .TabbedPanelsTabSelected {
background-color: #F6F6F6;
border-bottom: solid 1px #999;
}

/* This selector floats the content panels for the widget so that they
* render to the right of the tabbed buttons.
*/
.VTabbedPanels .TabbedPanelsContentGroup {
clear: none;
float: left;
padding: 0px;
width: 30em;
height: 20em;
}

/* Styles for Printing */
@media print {
.TabbedPanels {
overflow: visible !important;
}
.TabbedPanelsContentGroup {
display: block !important;
overflow: visible !important;
height: auto !important;
}
.TabbedPanelsContent {
overflow: visible !important;
display: block !important;
clear:both !important;
}
.TabbedPanelsTab {
overflow: visible !important;
display: block !important;
clear:both !important;
}
}
********

Oh je viel zu lesen ;-)
Sorry aber weiß da einer wa szu.

Ausserdem kannich wirklich bedenkenlos alles graue (Kommentare) entfernen? Das würde das css deutlich verkürzen ;-).

Danke euch

Liebe Grüße Sarah
 

sarah_cs4_purfan

CS4Neuling, wenig blicke

AW: SpryTabbedPanels Navigation

braucht ihr das js auch dazu?

******
JavaScript
(function() { // BeginSpryComponent

if (typeof Spry == "undefined") window.Spry = {}; if (!Spry.Widget) Spry.Widget = {};

Spry.Widget.TabbedPanels = function(element, opts)
{
this.element = this.getElement(element);
this.defaultTab = 0; // Show the first panel by default.
this.tabSelectedClass = "TabbedPanelsTabSelected";
this.tabHoverClass = "TabbedPanelsTabHover";
this.tabFocusedClass = "TabbedPanelsTabFocused";
this.panelVisibleClass = "TabbedPanelsContentVisible";
this.focusElement = null;
this.hasFocus = false;
this.currentTabIndex = 0;
this.enableKeyboardNavigation = true;
this.nextPanelKeyCode = Spry.Widget.TabbedPanels.KEY_RIGHT;
this.previousPanelKeyCode = Spry.Widget.TabbedPanels.KEY_LEFT;

Spry.Widget.TabbedPanels.setOptions(this, opts);

// If the defaultTab is expressed as a number/index, convert
// it to an element.

if (typeof (this.defaultTab) == "number")
{
if (this.defaultTab < 0)
this.defaultTab = 0;
else
{
var count = this.getTabbedPanelCount();
if (this.defaultTab >= count)
this.defaultTab = (count > 1) ? (count - 1) : 0;
}

this.defaultTab = this.getTabs()[this.defaultTab];
}

// The defaultTab property is supposed to be the tab element for the tab content
// to show by default. The caller is allowed to pass in the element itself or the
// element's id, so we need to convert the current value to an element if necessary.

if (this.defaultTab)
this.defaultTab = this.getElement(this.defaultTab);

this.attachBehaviors();
};

Spry.Widget.TabbedPanels.prototype.getElement = function(ele)
{
if (ele && typeof ele == "string")
return document.getElementById(ele);
return ele;
};

Spry.Widget.TabbedPanels.prototype.getElementChildren = function(element)
{
var children = [];
var child = element.firstChild;
while (child)
{
if (child.nodeType == 1 /* Node.ELEMENT_NODE */)
children.push(child);
child = child.nextSibling;
}
return children;
};

Spry.Widget.TabbedPanels.prototype.addClassName = function(ele, className)
{
if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) != -1))
return;
ele.className += (ele.className ? " " : "") + className;
};

Spry.Widget.TabbedPanels.prototype.removeClassName = function(ele, className)
{
if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) == -1))
return;
ele.className = ele.className.replace(new RegExp("\\s*\\b" + className + "\\b", "g"), "");
};

Spry.Widget.TabbedPanels.setOptions = function(obj, optionsObj, ignoreUndefinedProps)
{
if (!optionsObj)
return;
for (var optionName in optionsObj)
{
if (ignoreUndefinedProps && optionsObj[optionName] == undefined)
continue;
obj[optionName] = optionsObj[optionName];
}
};

Spry.Widget.TabbedPanels.prototype.getTabGroup = function()
{
if (this.element)
{
var children = this.getElementChildren(this.element);
if (children.length)
return children[0];
}
return null;
};

Spry.Widget.TabbedPanels.prototype.getTabs = function()
{
var tabs = [];
var tg = this.getTabGroup();
if (tg)
tabs = this.getElementChildren(tg);
return tabs;
};

Spry.Widget.TabbedPanels.prototype.getContentPanelGroup = function()
{
if (this.element)
{
var children = this.getElementChildren(this.element);
if (children.length > 1)
return children[1];
}
return null;
};

Spry.Widget.TabbedPanels.prototype.getContentPanels = function()
{
var panels = [];
var pg = this.getContentPanelGroup();
if (pg)
panels = this.getElementChildren(pg);
return panels;
};

Spry.Widget.TabbedPanels.prototype.getIndex = function(ele, arr)
{
ele = this.getElement(ele);
if (ele && arr && arr.length)
{
for (var i = 0; i < arr.length; i++)
{
if (ele == arr)
return i;
}
}
return -1;
};

Spry.Widget.TabbedPanels.prototype.getTabIndex = function(ele)
{
var i = this.getIndex(ele, this.getTabs());
if (i < 0)
i = this.getIndex(ele, this.getContentPanels());
return i;
};

Spry.Widget.TabbedPanels.prototype.getCurrentTabIndex = function()
{
return this.currentTabIndex;
};

Spry.Widget.TabbedPanels.prototype.getTabbedPanelCount = function(ele)
{
return Math.min(this.getTabs().length, this.getContentPanels().length);
};

Spry.Widget.TabbedPanels.addEventListener = function(element, eventType, handler, capture)
{
try
{
if (element.addEventListener)
element.addEventListener(eventType, handler, capture);
else if (element.attachEvent)
element.attachEvent("on" + eventType, handler);
}
catch (e) {}
};

Spry.Widget.TabbedPanels.prototype.cancelEvent = function(e)
{
if (e.preventDefault) e.preventDefault();
else e.returnValue = false;
if (e.stopPropagation) e.stopPropagation();
else e.cancelBubble = true;

return false;
};

Spry.Widget.TabbedPanels.prototype.onTabClick = function(e, tab)
{
this.showPanel(tab);
return this.cancelEvent(e);
};

Spry.Widget.TabbedPanels.prototype.onTabMouseOver = function(e, tab)
{
this.addClassName(tab, this.tabHoverClass);
return false;
};

Spry.Widget.TabbedPanels.prototype.onTabMouseOut = function(e, tab)
{
this.removeClassName(tab, this.tabHoverClass);
return false;
};

Spry.Widget.TabbedPanels.prototype.onTabFocus = function(e, tab)
{
this.hasFocus = true;
this.addClassName(tab, this.tabFocusedClass);
return false;
};

Spry.Widget.TabbedPanels.prototype.onTabBlur = function(e, tab)
{
this.hasFocus = false;
this.removeClassName(tab, this.tabFocusedClass);
return false;
};

Spry.Widget.TabbedPanels.KEY_UP = 38;
Spry.Widget.TabbedPanels.KEY_DOWN = 40;
Spry.Widget.TabbedPanels.KEY_LEFT = 37;
Spry.Widget.TabbedPanels.KEY_RIGHT = 39;



Spry.Widget.TabbedPanels.prototype.onTabKeyDown = function(e, tab)
{
var key = e.keyCode;
if (!this.hasFocus || (key != this.previousPanelKeyCode && key != this.nextPanelKeyCode))
return true;

var tabs = this.getTabs();
for (var i =0; i < tabs.length; i++)
if (tabs == tab)
{
var el = false;
if (key == this.previousPanelKeyCode && i > 0)
el = tabs[i-1];
else if (key == this.nextPanelKeyCode && i < tabs.length-1)
el = tabs[i+1];

if (el)
{
this.showPanel(el);
el.focus();
break;
}
}

return this.cancelEvent(e);
};

Spry.Widget.TabbedPanels.prototype.preorderTraversal = function(root, func)
{
var stopTraversal = false;
if (root)
{
stopTraversal = func(root);
if (root.hasChildNodes())
{
var child = root.firstChild;
while (!stopTraversal && child)
{
stopTraversal = this.preorderTraversal(child, func);
try { child = child.nextSibling; } catch (e) { child = null; }
}
}
}
return stopTraversal;
};

Spry.Widget.TabbedPanels.prototype.addPanelEventListeners = function(tab, panel)
{
var self = this;
Spry.Widget.TabbedPanels.addEventListener(tab, "click", function(e) { return self.onTabClick(e, tab); }, false);
Spry.Widget.TabbedPanels.addEventListener(tab, "mouseover", function(e) { return self.onTabMouseOver(e, tab); }, false);
Spry.Widget.TabbedPanels.addEventListener(tab, "mouseout", function(e) { return self.onTabMouseOut(e, tab); }, false);

if (this.enableKeyboardNavigation)
{
// XXX: IE doesn't allow the setting of tabindex dynamically. This means we can't
// rely on adding the tabindex attribute if it is missing to enable keyboard navigation
// by default.

// Find the first element within the tab container that has a tabindex or the first
// anchor tag.

var tabIndexEle = null;
var tabAnchorEle = null;

this.preorderTraversal(tab, function(node) {
if (node.nodeType == 1 /* NODE.ELEMENT_NODE */)
{
var tabIndexAttr = tab.attributes.getNamedItem("tabindex");
if (tabIndexAttr)
{
tabIndexEle = node;
return true;
}
if (!tabAnchorEle && node.nodeName.toLowerCase() == "a")
tabAnchorEle = node;
}
return false;
});

if (tabIndexEle)
this.focusElement = tabIndexEle;
else if (tabAnchorEle)
this.focusElement = tabAnchorEle;

if (this.focusElement)
{
Spry.Widget.TabbedPanels.addEventListener(this.focusElement, "focus", function(e) { return self.onTabFocus(e, tab); }, false);
Spry.Widget.TabbedPanels.addEventListener(this.focusElement, "blur", function(e) { return self.onTabBlur(e, tab); }, false);
Spry.Widget.TabbedPanels.addEventListener(this.focusElement, "keydown", function(e) { return self.onTabKeyDown(e, tab); }, false);
}
}
};

Spry.Widget.TabbedPanels.prototype.showPanel = function(elementOrIndex)
{
var tpIndex = -1;

if (typeof elementOrIndex == "number")
tpIndex = elementOrIndex;
else // Must be the element for the tab or content panel.
tpIndex = this.getTabIndex(elementOrIndex);

if (!tpIndex < 0 || tpIndex >= this.getTabbedPanelCount())
return;

var tabs = this.getTabs();
var panels = this.getContentPanels();

var numTabbedPanels = Math.max(tabs.length, panels.length);

for (var i = 0; i < numTabbedPanels; i++)
{
if (i != tpIndex)
{
if (tabs)
this.removeClassName(tabs, this.tabSelectedClass);
if (panels)
{
this.removeClassName(panels, this.panelVisibleClass);
panels.style.display = "none";
}
}
}

this.addClassName(tabs[tpIndex], this.tabSelectedClass);
this.addClassName(panels[tpIndex], this.panelVisibleClass);
panels[tpIndex].style.display = "block";

this.currentTabIndex = tpIndex;
};

Spry.Widget.TabbedPanels.prototype.attachBehaviors = function(element)
{
var tabs = this.getTabs();
var panels = this.getContentPanels();
var panelCount = this.getTabbedPanelCount();

for (var i = 0; i < panelCount; i++)
this.addPanelEventListeners(tabs, panels);

this.showPanel(this.defaultTab);
};

})(); // EndSpryComponent
*******
 

sokie

Mod | Web

AW: SpryTabbedPanels Navigation



unter set default open panel:
You can set a panel to be open when the page containing the Tabbed Panels widget loads in a browser.
Set the defaultTab option in the constructor as follows: <script
Code:
type="text/javascript">
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", { defaultTab: 2 });
</script>
Note: The Tabbed Panels widget uses a zero-based counting system, so setting the value to 2 opens the third tabbed panel.
benutze doch bitte zum Einfügen von Code die dafür vorgesehenen Werkzeuge - so etwas (ohne einrückungen und co) mag doch niemand lesen. Ausserdem werden begriffe wie focus auseinandergerissen, sodass man das nichtmal testen kann.
 
Zuletzt bearbeitet:

sarah_cs4_purfan

CS4Neuling, wenig blicke

AW: SpryTabbedPanels Navigation

Danke für deine Hilfe und die Tips.

Das mit dem Einrücken und Ordnen des Quellcodes nehme ich mir zu Herzen fürs nächste Mal.

Liebe Grüße Sarah
 

sarah_cs4_purfan

CS4Neuling, wenig blicke

AW: SpryTabbedPanels Navigation

Soweit so gut ;-)

Ich arbeite in dieser Site mit einer Vorlage.

Darin steht dann jetzt ganz unten
(*lach* nicht in der .js wie ich abnahm, sondern direkt im Quelltext)

<script type="text/javascript">
var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1",{ defaultTab: 2 });

</script>

Hat zur Folge das er jetzt immer den pannel2 aufmacht. Also egal wo ich hin naviegiere er favorisiert immer den 2 was natürlich der dritte TAB ist.
Soweit logisch!

Auch wenn JavaScript echt nicht mein's ist so kann ich das nachvollziehen.
Mein Problem, ihr könnt es euch schon denken, weil ihr es könnt!
Wenn ich die Vorlage so ändere wie oben beschrieben wird das auf alle angewendet und somit entsteht dieses immer TAB3 aktiv!
Beim aktuallisieren imme rnur bestimmte Seiten auswählen und dann die vorlage fortlaufend ändern und immer auf betroffenen Seiten anwenden funktioniert auchnicht wirklich.

Ich kann ja in den aus der Vorlage erzeugten Seiten diesen unteren Teil des Quelltextes nicht mehr ändern.
Oder hab ich da jetzt wieder einen Denkfehler drin?

Ach menno, eigentlich gefällt mir diese Art der navigation nämlich sehr gut.

LGs Sarah

Für die Anleitung von Adobe ist mein Englisch nicht gut genug :-( muss ich doch nochmal lernen, ich seh's schon.
 
Zuletzt bearbeitet:

sarah_cs4_purfan

CS4Neuling, wenig blicke

AW: SpryTabbedPanels Navigation

Werde mir die Hilfe mal übersetzen am WE und hoffe das ich dann weiter komme.

Den spanischen Kommentar versteh ich nun vom Sinn her gar nicht aber egal.

LG Sarah
 

sokie

Mod | Web

AW: SpryTabbedPanels Navigation

Hat zur Folge das er jetzt immer den pannel2 aufmacht. Also egal wo ich hin naviegiere er favorisiert immer den 2 was natürlich der dritte TAB ist.
Soweit logisch!
Du musst nun dafür sorgen, dass auf den Seiten die geöffnet werden, der jeweilig passende Tab geöffnet wird. Das heisst eben, dass { defaultTab: X } auf unterschiedlichen Seiten eben einen unterschiedlichen Wert haben muss.
 

sarah_cs4_purfan

CS4Neuling, wenig blicke

AW: SpryTabbedPanels Navigation

;-) mein Reden,
ich muss jetzt versuchen den unteren JavaSkript-Teil aus der Vorlage raus zu lassen ( sieht die Vorlage dann zwar doof aus) und auf jeder Seite diesen Teil einfügen und die richtige Zahl einsetzten für das X!

Das mit der Vorlage ist das Problem, da dieser Teil ja später gesperrt ist für die Bearbeitung.

Das versuche ich nachher mal.

Das müsste es dann sein!

Danke

LGs Sarah

Nachtrag 18:44
Ja das ist es, Abschied von der Vorlage Datei und dann kann man das wunderbar anpassen ;-)
Alles gut Danke.

OK 103 Seiten von vorne ;-) Blöde wenn man das erst hinterher bemerkt ;-).
Aber das übt ;-)
 
Zuletzt bearbeitet:
Bilder bitte hier hochladen und danach über das Bild-Icon (Direktlink vorher kopieren) platzieren.
Antworten auf deine Fragen:
Neues Thema erstellen

Willkommen auf PSD-Tutorials.de

In unseren Foren vernetzt du dich mit anderen Personen, um dich rund um die Themen Fotografie, Grafik, Gestaltung, Bildbearbeitung und 3D auszutauschen. Außerdem schalten wir für dich regelmäßig kostenlose Inhalte frei. Liebe Grüße senden dir die PSD-Gründer Stefan und Matthias Petri aus Waren an der Müritz. Hier erfährst du mehr über uns.

Stefan und Matthias Petri von PSD-Tutorials.de

Nächster neuer Gratisinhalt

03
Stunden
:
:
25
Minuten
:
:
19
Sekunden

Flatrate für Tutorials, Assets, Vorlagen

Zurzeit aktive Besucher

Keine Mitglieder online.

Statistik des Forums

Themen
118.565
Beiträge
1.538.067
Mitglieder
67.488
Neuestes Mitglied
Andrew56524
Oben