GlideMenu (g_menu and g_item) - Client
-
- UpdatedJan 30, 2025
- 2 minutes to read
- Yokohama
- API reference
The GlideMenu API provides methods that can be used in UI context menus and in onShow
scripts to customize UI context menu items.
g_menu
global object.g_menu
is the UI context menu that is about to be shown. TheonShow
script can make changes to the appearance of the menu before it is displayed using these methods.g_item
is the current UI context menu item that is about to be shown. It is used in several of the g_menu methods to specify an item.
GlideMenu - clearImage(GlideMenuItem item)
Clears the image for an item.
Name | Type | Description |
---|---|---|
item | GlideMenuItem | Specifies the item to have its image removed from display. |
Type | Description |
---|---|
void |
Example
GlideMenu - clearSelected()
Clears any selection images from items in the menu.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
void |
GlideMenu - getItem(String itemID)
Returns a menu item by item ID.
It can be necessary to find an item in a menu so that it can be changed before being displayed. Each menu item may be assigned a unique ID when the menu item is created (either from a UI Context Menu entry or from the addAction() method in the Dynamic Script Action).
Name | Type | Description |
---|---|---|
itemID | String | Specifies the item to be returned. |
Type | Description |
---|---|
GlideMenuItem | The menu item |
GlideMenu - setDisabled(GlideMenuItem item)
Disables a menu item so that it cannot be selected. The disabled menu item is displayed in a lighter color (grayed out) to indicate it is disabled.
Name | Type | Description |
---|---|---|
item | GlideMenuItem | The item to be disabled. |
Type | Description |
---|---|
void |
Example
GlideMenu - setEnabled(GlideMenuItem item)
Enables the specified menu item.
Name | Type | Description |
---|---|---|
item | GlideMenuItem | The item to be enabled. |
Type | Description |
---|---|
void |
Example
GlideMenu - setHidden(GlideMenuItem item)
Hides the specified menu item.
When hiding menu items, the separator bars are not adjusted, so it is possible to end up with the menu showing two separators in a row.
Name | Type | Description |
---|---|---|
item | GlideMenuItem | The item to be hidden. |
Type | Description |
---|---|
void |
Example
GlideMenu - setImage(GlideMenuItem item, String imgSrc)
Sets an image for an item.
Name | Type | Description |
---|---|---|
item | GlideMenuItem | the item to have the image displayed. |
imgSrc | String | the image to attach to the menu item. |
Type | Description |
---|---|
void |
Example
GlideMenu - setLabel(GlideMenuItem item, String label)
Sets the display label for a menu item. The label may contain HTML.
Name | Type | Description |
---|---|---|
item | GlideMenuItem | the item to be labeled. |
label | String | the label to be displayed. The string may contain HTML. |
Type | Description |
---|---|
void |
Example
GlideMenu - setVisible(GlideMenuItem item)
Displays the specified item.
Name | Type | Description |
---|---|---|
item | GlideMenuItem | The item to be displayed. |
Type | Description |
---|---|
void |
Example
On this page
- GlideMenu - clearImage(GlideMenuItem item)
- GlideMenu - clearSelected()
- GlideMenu - getItem(String itemID)
- GlideMenu - setDisabled(GlideMenuItem item)
- GlideMenu - setEnabled(GlideMenuItem item)
- GlideMenu - setHidden(GlideMenuItem item)
- GlideMenu - setImage(GlideMenuItem item, String imgSrc)
- GlideMenu - setLabel(GlideMenuItem item, String label)
- GlideMenu - setVisible(GlideMenuItem item)