Add tooltip to tab : Tooltip « Ext JS « JavaScript DHTML






Add tooltip to tab

  

<html>
<head>
<title>Hello World Window</title>
<link rel="stylesheet" type="text/css" href="ext-3.0.0/resources/css/ext-all.css" />
<script type="text/javascript" src="ext-3.0.0/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-3.0.0/ext-all.js"></script>

</head>
<body>
<script type="text/javascript">
Ext.onReady(function() {
    Ext.QuickTips.init();
    new Ext.Viewport({
        layout : 'fit',
        title  : 'Exercising scrollable tabs',
        items  : {
            xtype           : 'tabpanel',
            activeTab       : 0,
            id              : 'myTPanel',
            enableTabScroll : true,
            resizeTabs      : true,
            minTabWidth     : 75,
            items           : [
                {
                    title : 'our first tab',
                    tabTip   : 'asdf'
                }
            ]
        }
    });

    

});
</script> 
<div id='div1'>asdf</div>
</body>
</html>

   
    
  








Related examples in the same category

1.Set message target to use tooltip
2.Basic tooltip
3.Auto hide tooltip
4.Closable tooltip
5.Callout tooltip
6.Mouse track tooltip
7.Ajax tooltip
8.Anchor right tooltip
9.Slider with tooltip
10.Slider with custom tooltip
11.CSS customized tooltip