Context Menu
29 Aug 20175 minutes to read
A context menu is a type of menu in a graphical user interface (GUI) that appears when you perform right click operation. In this Menu control you can use a context menu by specifying the type of menu as ContextMenu. A context also provides support for nested level of menu items.
Before you use the context menu, provide the target area for it.
In the following example, a context menu for the division containing text is created. In this, when you perform right click operation, the following menu appears with open, edit, etc.
Add the following code in your HTML page.
<div>
<div id="target" class="textarea">
HTML is written in the form of HTML elements consisting of tags enclosed in angle
brackets (like
<html>
),within the web page content. HTML tags most commonly come in pairs like and ,although
some tags, known as empty elements, are unpaired, for example
<img>. The purpose of a web browser is to read HTML documents and compose them into
visible or audible web pages. The browser does not display the HTML tags, but uses
the tags to interpret the content of the page.
</div>
<ul id="contextMenu">
<li><a>Open</a></li>
<li><a>Edit</a></li>
<li><a>Save</a></li>
<li class="separator"></li>
<li><a>Save as</a></li>
<li><a>Print</a></li>
<li><a>Properties</a></li>
</ul>
</div>
// Add the following code in your script section.
/// <reference path="tsfiles/jquery.d.ts" />
/// <reference path="tsfiles/ej.web.all.d.ts" />
module MenuComponent {
$(function () {
var sample = new ej.Menu($("#contextMenu"),{
menuType: ej.MenuType.ContextMenu,
openOnClick: false,
contextMenuTarget: "#target"
});
});
}
Add the following code in your style section.
<style type="text/css">
.textarea {
border: 1px solid;
padding: 10px;
position: relative;
text-align: justify;
width: 463px;
color: gray;
margin: 0 auto;
}
</style>
The following screen shot displays the output of the above code.
You can hide and show the context menu using the following methods.
HideContextMenu
Hides the context menu control. Add the following script code in the sample in order to hide the context menu.
$(function () {
var sample = new ej.Menu($("#contextMenu"),{
menuType: ej.MenuType.ContextMenu,
openOnClick: false,
contextMenuTarget: "#target"
});
sample.hide();
});
ShowContextMenu
Shows the context menu control. Add the following script code in the sample in order to show the context menu.
$(function () {
var sample = new ej.Menu($("#contextMenu"),{
menuType: ej.MenuType.ContextMenu,
openOnClick: false,
contextMenuTarget: "#target"
});
sample.show();
});