Use menu separator to a menu : Menu « Ext JS « JavaScript DHTML






Use menu separator to a menu

  
<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>
<script type="text/javascript">

Ext.onReady(function() {
    var genericHandler = function(menuItem) {
        Ext.MessageBox.alert('', 'Your choice is ' + menuItem.text);
    }
    var colorAndDateHandler = function(menuItem, choice) {
        Ext.MessageBox.alert('', 'Your choice is ' + choice);
    }

    var a = {
        text    : 'New Department',
        menu    : [
            {
                text    : 'Management',
                handler : genericHandler
            },
            {
                text    : 'Accounting',
                handler : genericHandler
            },
            {
                text    : 'Sales',
                handler : genericHandler
            }
        ]
    }
    var menuItems = [
        a,
        '-',
        a
    ];

    var menu = new Ext.menu.Menu({
        id        : 'myMenu',
        items     : menuItems,
        listeners : {
            'beforehide' : function() {
                return false;
            }
        }
    
    });
    menu.showAt([100,100]);
});



</script>
<body>


</body>
</html>

   
    
  








Related examples in the same category

1.Dropdown menu
2.Put Ext.form.ComboBox to a dropdown menu
3.Radio Options menu
4.Checkbox button
5.Menu item on click event
6.Menu separator
7.Create and show menu
8.Menu click handler
9.Add icon to menu item
10.Radio button menu item
11.Add a submenu
12.Menu hideOnClick = false
13.Add a menu text item to a menu
14.Add checkbox menu item to a menu