Skip to content
This repository has been archived by the owner. It is now read-only.

Latest commit

 

History

History
137 lines (94 loc) · 4.07 KB

File metadata and controls

137 lines (94 loc) · 4.07 KB
layout post
title Context-Menu
description context menu
platform js
control Menu
documentation ug
api /api/js/ejmenu

Context Menu

A context menu is a type of menu in a graphical user interface (GUI) that appears when you perform right click operation. For this operation, you have to disable the openOnClick property. In this Menu control you can use a context menu by specifying the type of menu as ContextMenu using menuType. A context also provides support for nested level of menu items.

Before you use the context menu, provide the target area for it and mention that area id in the property named as contextMenuTarget.

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.

{% highlight html %}

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.
  • Open
  • Edit
  • Save
  • Save as
  • Print
  • Properties

{% endhighlight %}

{% highlight javascript %}

// Add the following code in your script section.
jQuery(function ($) {
    $("#contextMenu").ejMenu({            
        menuType: ej.MenuType.ContextMenu,
        openOnClick: false,
        contextMenuTarget: "#target"
    });
});

{% endhighlight %}

Add the following code in your style section.

{% highlight css %}

<style type="text/css"> .textarea { border: 1px solid; padding: 10px; position: relative; text-align: justify; width: 463px; color: gray; margin: 0 auto; } </style>

{% endhighlight %}

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 using hide method. Add the following script code in the sample in order to hide the context menu.

{% highlight javascript %}

jQuery(function ($) {
    $("#contextMenu").ejMenu({            
        menuType: ej.MenuType.ContextMenu,
        openOnClick: false,
        contextMenuTarget: "#target"
    });
    //initialize the menu object
    var menuObj = $("#contextMenu ").data("ejMenu");
    //To hide the context menu
    menuObj.hide();
});

{% endhighlight %}

ShowContextMenu

Shows the context menu control using show method. Add the following script code in the sample in order to show the context menu.

{% highlight javascript %}

jQuery(function ($) {
    $("#contextMenu").ejMenu({            
        menuType: ej.MenuType.ContextMenu,
        openOnClick: false,
        contextMenuTarget: "#target"
    });
    //initialize the menu object
    var menuObj = $("#contextMenu ").data("ejMenu");
    //To show the context menu
    menuObj.show();
});

{% endhighlight %}