- Icons
- Navigation
- Multilevel nesting
- See Also
Contact Support
Icons and sub menu items in EJ2 JavaScript Menu control
2 May 202321 minutes to read
Icons
The menu item contains an icon/image in it to provide a visual representation of an action. To place the icon on a menu item, set the iconCss
property with the required icon CSS. By default, the icon is positioned at the left of the menu item. In the following sample, the icons of File
and Edit
menu items and Open
, Save
, Cut
, Copy
,and Paste
sub menu items are added using the iconCss
property.
ej.base.enableRipple(true);
//Menu datasource
var menuItems = [
{
text: 'File',
iconCss: 'em-icons e-file',
items: [
{ text: 'Open', iconCss: 'em-icons e-open' },
{ text: 'Save', iconCss: 'e-icons e-save' },
{ separator: true },
{ text: 'Exit' }
]
},
{
text: 'Edit',
iconCss: 'em-icons e-edit',
items: [
{ text: 'Cut', iconCss: 'em-icons e-cut' },
{ text: 'Copy', iconCss: 'em-icons e-copy' },
{ text: 'Paste', iconCss: 'em-icons e-paste' }
]
},
{
text: 'View',
items: [
{ text: 'Toolbar' },
{ text: 'Sidebar' },
{ text: 'Full Screen' }
]
},
{
text: 'Tools',
items: [
{ text: 'Spelling & Grammar' },
{ text: 'Customize' },
{ text: 'Options' }
]
},
{ text: 'Go' },
{ text: 'Help' }
];
// Initialize Menu component.
var menuObj = new ej.navigations.Menu({items: menuItems}, '#menu');
<!DOCTYPE html><html lang="en"><head>
<title>Essential JS 2</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="description" content="Essential JS 2">
<meta name="author" content="Syncfusion">
<link href="https://cdn.syncfusion.com/ej2/29.1.33/ej2-base/styles/material.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/29.1.33/ej2-popups/styles/material.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/29.1.33/ej2-navigations/styles/material.css" rel="stylesheet">
<!--style reference from app-->
<link href="styles.css" rel="stylesheet">
<!--system js reference and configuration-->
<script src="https://cdn.syncfusion.com/ej2/29.1.33/dist/ej2.min.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<ul id="menu"></ul>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>
Navigation
Navigation in Menu is used to navigate to the other web page when a menu item is clicked. It can be achieved by providing a link to the menu item using the url
property. In the following sample, the Navigation URL is added to sub menu items using the [url
] property.
ej.base.enableRipple(true);
//Menu items definition
var menuItems = [
{
text: 'Appliances',
items: [
{ text: 'Washing Machine', url: 'https://www.google.com/search?q=washing+machine' },
{ text: 'Air Conditioners', url: 'https://www.google.com/search?q=air+conditioners' }
]
},
{
text: 'Mobile',
items: [
{ text: 'Headphones', url: 'https://www.google.com/search?q=headphones' },
{ text: 'Memory Cards', url: 'https://www.google.com/search?q=memory+cards' },
{ text: 'Power Banks', url: 'https://www.google.com/search?q=power+banks' }
]
},
{
text: 'Entertainment',
items: [
{ text: 'Televisions', url: 'https://www.google.com/search?q=televisions' },
{ text: 'Home Theatres', url: 'https://www.google.com/search?q=home+theatres' },
{ text: 'Gaming Laptops', url: 'https://www.google.com/search?q=gaming+laptops' }
]
},
{ text: 'Fashion', url: 'https://www.google.com/search?q=fashion' },
{ text: 'Offers', url: 'https://www.google.com/search?q=offers' }
];
// Initialize Menu component.
var menuObj = new ej.navigations.Menu({
items: menuItems,
// To open url in blank page.
beforeItemRender: function (args) {
if (args.item.url) {
args.element.getElementsByTagName('a')[0].setAttribute('target', '_blank');
}
}
}, '#menu');
<!DOCTYPE html><html lang="en"><head>
<title>Essential JS 2</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="description" content="Essential JS 2">
<meta name="author" content="Syncfusion">
<link href="https://cdn.syncfusion.com/ej2/29.1.33/ej2-base/styles/material.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/29.1.33/ej2-popups/styles/material.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/29.1.33/ej2-navigations/styles/material.css" rel="stylesheet">
<!--style reference from app-->
<link href="styles.css" rel="stylesheet">
<!--system js reference and configuration-->
<script src="https://cdn.syncfusion.com/ej2/29.1.33/dist/ej2.min.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<div class="control-section">
<ul id="menu"></ul>
</div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>
Multilevel nesting
The Menu supports multiple level nesting, and it can be achieved by mapping the items
property inside the parent menuItems
. In the following sample, three-level nesting of menu has been provided.
ej.base.enableRipple(true);
//Menu items definition
var menuItems = [
{
text: 'Fashion',
items: [
{
text: 'Men Fashion',
items: [
{
text: 'Personal Care',
items: [
{ text: 'Trimmers' },
{ text: 'Shavers' }
]
},
{
text: 'Clothing',
items: [
{ text: 'Shirts' },
{ text: 'Jackets' },
{ text: 'Track Suits' }
]
},
{ text: 'Footwear' }
]
},
{
text: 'Women Fashion',
items: [
{
text: 'Clothing',
items: [
{ text: 'Kurtas' },
{ text: 'Salwars' },
{ text: 'Sarees' }
]
},
{
text: 'Jewellery',
items: [
{ text: 'Nosepins' },
{ text: 'Anklets' }
]
}
]
}
]
},
{
text: 'Home & Living',
items: [
{
text: 'Washing Machine',
items: [
{ text: 'Fully Automatic' },
{ text: 'Semi Automatic' }
]
},
{
text: 'Air Conditioners',
items: [
{ text: 'Inverter ACs' },
{ text: 'Split ACs' }
]
}
]
},
{ text: 'Accessories' },
{ text: 'Sports' },
{ text: 'Gaming' }
];
//Initialize Menu component.
var menuObj = new ej.navigations.Menu({items: menuItems}, '#menu');
<!DOCTYPE html><html lang="en"><head>
<title>Essential JS 2</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="description" content="Essential JS 2">
<meta name="author" content="Syncfusion">
<link href="https://cdn.syncfusion.com/ej2/29.1.33/ej2-base/styles/material.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/29.1.33/ej2-popups/styles/material.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/29.1.33/ej2-navigations/styles/material.css" rel="stylesheet">
<!--style reference from app-->
<link href="styles.css" rel="stylesheet">
<!--system js reference and configuration-->
<script src="https://cdn.syncfusion.com/ej2/29.1.33/dist/ej2.min.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<div class="control-section">
<ul id="menu"></ul>
</div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>
You can achieve multi level nesting with data source by mapping
name
of the child items to thechildren
sub-property offields
property. Also, we can specifyid
property for menu items. For more information, refer to thedata source binding
section. To open sub menu items only on item click,showItemOnClick
should be set astrue
.
The below table represents the MenuItem properties and it’s description.
Property Name | Type | Description | |
---|---|---|---|
iconCss | string | Defines class/multiple classes separated by a space for the menu Item that is used to include an icon. Menu Item can include font icon and sprite image. | |
id | string | Specifies the id for menu item. | |
separator | boolean | Specifies separator between the menu items. Separator are either horizontal or vertical lines used to group menu items. | |
items | MenuItemModel[] | Specifies the sub menu items that is the array of MenuItem model/ | |
text | string | Specifies text for menu item. | |
url | string | Specifies url for menu item that creates the anchor link to navigate to the url provided. |