I need a YUI3 tabview like

<div id="demo"></div>
<script>
YUI().use('tabview', function(Y) {
    var tabview = new Y.TabView({
        children: [{
            label: 'foo',
            content: '<p>foo content</p>'
        }, {
            label: 'bar',
            content: '<p>bar content</p>'
        }, {
            label: 'baz',
            content: '<p>baz content</p>'
       }]
    });
    tabview.render('#demo');
});
</script>

Now need a event handler which will be of following specification

  1. It will be fired when user will click on tab something like "selectedTabChanged"
  2. Inside the handler will determine the label of the "SelectedTab"
link|improve this question
feedback

1 Answer

Just add this below tabview.render('#demo');

tabview.on('selectionChange', function (e) {
    alert('Changing tab from "' + e.prevVal.get('label') + '" to "' + e.newVal.get('label') + '"');
}
link|improve this answer
Thank you very much. – Devajit Sonowal Aug 14 '11 at 3:12
feedback

Your Answer

 
or
required, but never shown

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