Difference between revisions of "Board18Market5"
(added release note) |
m |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{{ReleaseNoticeX|2. | {{ReleaseNoticeX|2.5|Design_Document_board18Market_Page}} | ||
board18Market5.js contains all the right-click logic for the Market page.<br> | board18Market5.js contains all the right-click logic for the Market page.<br> | ||
A right click event on the stock chart in the Market page can | A right click event on the stock chart in the Market page can | ||
Line 5: | Line 5: | ||
displayed at all and the selection of items in this menu | displayed at all and the selection of items in this menu | ||
are both dependent on the context of the event. | are both dependent on the context of the event. | ||
== Calls from the ContextMenu() function== | |||
The ContextMenu(event) function in the script file named | |||
[[Board18Market6|Board18Market6.js]] | |||
uses the makeMenuItems function to include the correct menu | |||
items in the menu to be displayed for a particular event. | |||
==Function getMenuType(event)== | ==Function getMenuType(event)== | ||
Line 18: | Line 24: | ||
The makeMenuItems function will use the getMenuType | The makeMenuItems function will use the getMenuType | ||
function to determine which menu items it will | function to determine which menu items it will | ||
include in the currently displayed menu | include in the currently displayed menu. | ||
Latest revision as of 07:52, 24 July 2020
This page has been updated to comply with Release 2.5.x of BOARD18. | Go Back |
board18Market5.js contains all the right-click logic for the Market page.
A right click event on the stock chart in the Market page can
cause a context menu to be displayed. Whether this menu is
displayed at all and the selection of items in this menu
are both dependent on the context of the event.
Calls from the ContextMenu() function
The ContextMenu(event) function in the script file named Board18Market6.js uses the makeMenuItems function to include the correct menu items in the menu to be displayed for a particular event.
Function getMenuType(event)
The getMenuType() function returns a character from the list below to specify what type of menu to display. Menu types:
- "0" - Suppress the menu display entirely.
- "1" - Current box selected and token selected
- "3" - Current unselected box has only one token
- "4" - Current unselected box has multiple tokens
Function makeMenuItems(e)
The makeMenuItems function will use the getMenuType function to determine which menu items it will include in the currently displayed menu.