VOOZH about

URL: https://www.geeksforgeeks.org/jquery/jqwidgets-jqxscheduler-contextmenuopen-event/

⇱ jQWidgets jqxScheduler contextMenuOpen Event - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

jQWidgets jqxScheduler contextMenuOpen Event

Last Updated : 30 Jul, 2024

jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScheduler widget is used to show a set of appointments in a day, week, month, timeline day, timeline week as well as timeline month views.

The contextMenuOpen event is activated whenever a context menu in the displayed jqxScheduler is opened.

Syntax:

$('#Selector').on('contextMenuOpen', function (event) { });

Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder.

<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script>
<script type="text/javascript" src="jqwidgets/jqx-all.js"></script>
<script type="text/javascript" src="jqwidgets/jqxscheduler.js"></script>
<script type="text/javascript" src="jqwidgets/jqxscheduler.api.js"></script>

Example: The below example illustrates the jqxScheduler contextMenuOpen event in jQWidgets.

Output:

Reference:https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscheduler/jquery-scheduler-api.htm

Comment

Explore