The ContextMenu item have an icon/image in it to provide visual representation of the action. To place the icon on a menu item, set the IconCss
property to e-icons with the required icon CSS. By default, the icon is positioned to the left side of the menu item. In the following sample, the icons for Cut, Copy and Paste menu items are added using the IconCss
property.
@using Syncfusion.EJ2.Blazor.Navigations
<div id="target">Right click/Touch hold to open the ContextMenu </div>
<EjsContextMenu Target="#target" Items="@MenuItems"></EjsContextMenu>
@code {
public List<MenuItem> MenuItems = new List<MenuItem>
{
new MenuItem { Text = "Cut", IconCss = "e-icons e-cut" },
new MenuItem { Text = "Copy", IconCss = "e-icons e-copy" },
new MenuItem { Text = "Paste", IconCss = "e-icons e-paste" }
};
}
<style>
#target {
border: 1px dashed;
height: 150px;
padding: 10px;
position: relative;
text-align: justify;
color: gray;
user-select: none;
}
.e-cut::before {
content: '\e279';
}
.e-copy::before {
content: '\e280';
}
.e-paste::before {
content: '\e601';
}
</style>
Output be like
The ContextMenu provides a set of icons that can be loaded by applying
e-icons
class name to the element. You can also use third party icons on the ContextMenu MenuItems using theIconCss
property.
Navigation in ContextMenu is usage to navigate to the other web page when menu item is clicked. This can be achieved by providing link to the menu item using the Url
property. In the following sample, Navigation URL for Flipkart, Amazon, and Snapdeal menu items are added using the Url
property.
@using Syncfusion.EJ2.Blazor.Navigations
<div id="target">Right click/Touch hold to open the ContextMenu </div>
<EjsContextMenu Target="#target" Items="@MenuItems"></EjsContextMenu>
@code {
public List<MenuItem> MenuItems = new List<MenuItem>
{
new MenuItem { Text = "Flipkart", Url = "https://www.google.co.in/search?q=flipkart" },
new MenuItem { Text = "Amazon", Url = "https://www.google.co.in/search?q=amazon" },
new MenuItem { Text = "Snapdeal", Url = "https://www.google.co.in/search?q=snapdeal" }
};
}
<style>
#target {
border: 1px dashed;
height: 150px;
padding: 10px;
position: relative;
text-align: justify;
color: gray;
user-select: none;
}
</style>
Output be like