I want to provide an additional link to change tab using YUI3.
I have a form spread over multiple tabs, so at the bottom of tab-contents I want a 'continue' link which will take use to next tab.

any ideas.

link|improve this question

74% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Looking at the tabview source, it's not yet feature complete (It is still marked as beta), the ideal way would be to extend the tabview to create your own widget that has this feature.

However, you might be able to do something like the following:

var node = myTabView.get('node'),
    activeNode = node.one('.yui3-tab-selected'), //get the active node
    activeIndex = activeNode ? node.all('> ul > li').indexOf(activeNode) : 0; //get the index of the active node
//add checks for max tabs here
myTabView._select(activeIndex+1);

I haven't tested the code, but in principle it looks ok to me.

link|improve this answer
feedback

myTabView.selectChild(index) is the correct way to change tabs programmatically.

link|improve this answer
1  
I didn't realise that method was available for it, if I'd known, that's what I'd have posted – Kris Feb 15 '11 at 22:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.