Menu Class
File
wijmo.input.js
Module
wijmo.input
Base Class
ComboBox

The Menu control shows a text element with a drop-down list of commands that the user can invoke by click or touch.

The Menu control inherits from ComboBox, so you populate and style it in the same way that you do the ComboBox (see the itemsSource property).

The Menu control adds an itemClicked event that fires when the user selects an item from the menu. The event handler can inspect the Menu control to determine which item was clicked. For example:

import { Menu } from '@mescius/wijmo.input';
let menu = new Menu('#theMenu', {
    header: 'Main Menu',
    itemsSource: ['option 1', 'option 2', 'option 3'],
    itemClicked: s => {
        alert('Thanks for selecting item ' + s.selectedIndex + ' from menu ' + s.header + '!');
    }
});

The example below shows how you can create menus that handle the itemClicked event.

{@sample Input/Menu/Overview Example}

Constructor

constructor

constructor(element: any, options?: any): Menu

Initializes a new instance of the Menu class.

Parameters
  • element: any

    The DOM element that hosts the control, or a CSS selector for the host element (e.g. '#theCtrl').

  • options: any Optional

    The JavaScript object containing initialization data for the control.

Returns
Menu

Properties

ariaLabel

Gets or sets the aria-label attribute of Menu element.

The default value for this property is "Menu".

Type
string

autoExpandSelection

Gets or sets a value that indicates whether the control should automatically expand the selection to whole words/numbers when the control is clicked.

The default value for this property is **true**.

Inherited From
DropDown
Type
boolean

autoSelectOnFocus

Gets or sets a value that determines whether the first enabled item is automatically focused/selected in the dropDown. Used to add provide appropriate navigation when accessibility tools are used.

The default value for this property is false.

Type
boolean

caseSensitiveSearch

Gets or sets a value that determines whether searches performed while the user types should case-sensitive.

The default value for this property is **false**.

Inherited From
ComboBox
Type
boolean

clickAction

Gets or sets a value that specifies the action to perform when the user clicks the input element in the control.

For most drop-down controls, this property is set to Select by default. This setting allows users to select portions of the text with the mouse.

For drop-down controls that display non-editable text (such as the MultiSelect), this property is set to Toggle by default.

Inherited From
DropDown
Type
ClickAction

closeOnLeave

Gets or sets a value that determines whether the menu (and any sub-menus) should close automatically when the mouse leaves the menu.

This property is applicable only when the openOnHover is set to true.

The default value for this property is **true**.

Type
boolean

collectionView

Gets the ICollectionView object used as the item source.

Inherited From
ComboBox
Type
ICollectionView

command

Gets or sets the command object that determines whether menu items should be enabled and what actions they should perform when selected.

Command objects implement the ICommand interface.

You can also set commands on individual items using the commandPath property.

The default value for this property is **null**.

Type
ICommand

commandParameterPath

Gets or sets the name of the property that contains a parameter to use with the command specified by the commandPath property.

Command objects implement the ICommand interface.

The default value for this property is **null**.

Type
string

commandPath

Gets or sets the name of the property that contains the command to execute when the user clicks an item.

Command objects implement the ICommand interface.

This property overrides the command property for specific menu items.

The default value for this property is **null**.

Type
string

Static controlTemplate

Gets or sets the template used to instantiate DropDown controls.

Inherited From
DropDown
Type
any

displayMemberPath

Gets or sets the name of the property to use as the visual representation of the items.

Inherited From
ComboBox
Type
string

formatItem

Event that fires when items in the drop-down list are created.

You can use this event to modify the HTML in the list items. For details, see the ListBox.formatItem event.

Inherited From
ComboBox
Type
Event

handleWheel

Gets or sets a value that determines whether the user can use the mouse wheel to change the currently selected item.

The default value for this property is **true**.

Inherited From
ComboBox
Type
boolean

headerPath

Gets or sets the name of a property to use for getting the value displayed in the control's input element.

The default value for this property is **null**, which causes the control to display the same content in the input element as in the selected item of the drop-down list.

Use this property if you want to decouple the value shown in the input element from the values shown in the drop-down list. For example, the input element could show an item's name and the drop-down list could show additional detail.

Inherited From
ComboBox
Type
string

hostElement

Gets the DOM element that is hosting the control.

Inherited From
Control
Type
HTMLElement

inputElement

Gets the HTML input element hosted by the control.

Use this property in situations where you want to customize the attributes of the input element.

Inherited From
DropDown
Type
HTMLInputElement

inputType

Gets or sets the "type" attribute of the HTML input element hosted by the control.

The default value for this property is **'text'**.

Inherited From
DropDown
Type
string

isAnimated

Gets or sets a value that indicates whether the control should use a fade-in animation when displaying the drop-down.

The default value for this property is **false**.

Inherited From
DropDown
Type
boolean

isButton

Gets or sets a value that determines whether this Menu should act as a split button instead of a regular menu.

The default value for this property is **false**.

The difference between regular menus and split buttons is what happens when the user clicks the menu header. In regular menus, clicking the header shows or hides the menu options. In split buttons, clicking the header raises the itemClicked event and/or invokes the command associated with the last option selected by the user as if the user had picked the item from the drop-down list.

If you want to differentiate between clicks on menu items and the button part of a split button, check the value of the isDroppedDown property of the event sender. If that is true, then a menu item was clicked; if it is false, then the button was clicked.

For example, the code below implements a split button that uses the drop-down list only to change the default item/command, and triggers actions only when the button is clicked:

import { Menu } from '@mescius/wijmo.input';
let theMenu = new Menu('#theMenu', {
    isButton: true,
    itemClicked: s => { 
        if (!s.isDroppedDown) { // header/button click
            console.log('running ', s.selectedItem.browser);
        }
    },
    selectedIndexChanged: s => { // update header text
        if (s.selectedItem != null) {
            s.header = 'Run ' + s.selectedItem.browser;
        }
    },
    selectedValuePath: 'id',
    displayMemberPath: 'browser',
    itemsSource: [
        { id: 0, browser: 'Chrome' },
        { id: 1, browser: 'Edge' },
        { id: 2, browser: 'Firefox' },
        { id: 3, browser: 'Internet Explorer' }
    ],
});

Type
boolean

isContentHtml

Gets or sets a value indicating whether the drop-down list displays items as plain text or as HTML.

The default value for this property is **false**.

Inherited From
ComboBox
Type
boolean

isDisabled

Gets or sets a value that determines whether the control is disabled.

Disabled controls cannot get mouse or keyboard events.

Inherited From
Control
Type
boolean

isDroppedDown

Gets or sets a value that indicates whether the drop down is currently visible.

The default value for this property is **false**.

Inherited From
DropDown
Type
boolean

isEditable

Gets or sets a value that determines whether the content of the input element should be restricted to items in the itemsSource collection.

The default value for this property is **false** on the ComboBox control, and **true** on the AutoComplete and InputTime controls.

Inherited From
ComboBox
Type
boolean

isReadOnly

Gets or sets a value that indicates whether the user can modify the control value using the mouse and keyboard.

The default value for this property is **false**.

Inherited From
DropDown
Type
boolean

isRequired

Gets or sets a value that determines whether the control value must be set to a non-null value or whether it can be set to null (by deleting the content of the control).

This property defaults to true for most controls, including ComboBox, InputDate, InputTime, InputDateTime, and InputColor. It defaults to false for the AutoComplete control.

Inherited From
DropDown
Type
boolean

isTouching

Gets a value that indicates whether the control is currently handling a touch event.

Inherited From
Control
Type
boolean

isUpdating

Gets a value that indicates whether the control is currently being updated.

Inherited From
Control
Type
boolean

itemFormatter

Gets or sets a function used to customize the values shown in the drop-down list. The function takes two arguments, the item index and the default text or html, and returns the new text or html to display.

If the formatting function needs a scope (i.e. a meaningful 'this' value), then remember to set the filter using the 'bind' function to specify the 'this' object. For example:

comboBox.itemFormatter = customItemFormatter.bind(this);
function customItemFormatter(index, content) {
    if (this.makeItemBold(index)) {
        content = '<b>' + content + '</b>';
    }
    return content;
}

Inherited From
ComboBox
Type
IItemFormatter

itemsSource

Gets or sets the array or ICollectionView object that contains the items to select from.

Setting this property to an array causes the ComboBox to create an internal ICollectionView object that is exposed by the collectionView property.

The ComboBox selection is determined by the current item in its collectionView. By default, this is the first item in the collection. You may change this behavior by setting the wijmo.CollectionView.currentItem property of the collectionView to null.

Inherited From
ComboBox
Type
any

listBox

Gets the ListBox control shown in the drop-down.

Inherited From
ComboBox
Type
ListBox

maxDropDownHeight

Gets or sets the maximum height of the drop-down list, in pixels.

The default value for this property is **200** pixels.

Inherited From
ComboBox
Type
number

maxDropDownWidth

Gets or sets the maximum width of the drop-down list.

The width of the drop-down list is also limited by the width of the control itself (that value represents the drop-down's minimum width).

The default value for this property is **null**, which means the drop-down has no maximum width limit.

Inherited From
ComboBox
Type
number

openOnHover

Gets or sets a value that determines whether the menu (and any sub-menus) should open automatically when the mouse hovers over the items.

See also the closeOnLeave property, which determines whether the menu should close automatically when the mouse leaves the menu.

The default value for this property is **false**.

Type
boolean

owner

Gets or sets the element that owns this Menu.

This property is set by the wj-context-menu directive in case a single menu is used as a context menu for several different elements.

The default value for this property is **null**.

Type
HTMLElement

placeholder

Gets or sets the string shown as a hint when the control is empty.

Inherited From
DropDown
Type
string

rightToLeft

Gets a value indicating whether the control is hosted in an element with right-to-left layout.

Inherited From
Control
Type
boolean

selectedIndex

Gets or sets the index of the currently selected item in the drop-down list.

Inherited From
ComboBox
Type
number

selectedItem

Gets or sets the item that is currently selected in the drop-down list.

Inherited From
ComboBox
Type
any

selectedValue

Gets or sets the value of the selectedItem, obtained using the selectedValuePath.

If the selectedValuePath property is not set, gets or sets the value of the control's selectedItem property.

If the itemsSource property is not set, gets or sets the value of the control's text property.

Inherited From
ComboBox
Type
any

selectedValuePath

Gets or sets the name of the property used to get the selectedValue from the selectedItem.

Inherited From
ComboBox
Type
string

showDropDownButton

Gets or sets a value that indicates whether the control should display a drop-down button.

The default value for this property is **true**.

Inherited From
DropDown
Type
boolean

showGroups

Gets or sets a value that determines whether the drop-down ListBox should include group header items to delimit data groups.

Data groups are created by modifying the groupDescriptions property of the ICollectionView object used as an itemsSource.

The default value for this property is **false**.

Inherited From
ComboBox
Type
boolean

subItemsPath

Gets or sets the name of the property that contains an array with items to be displayed in a sub-menu.

The default value for this property is **null**.

Type
string

tabOrder

Gets or sets a value of the **tabindex** attribute associated with the control.

**tabindex** attribute value can be defined statically for a Wijmo control by specifying it on the control's host HTML element. But this value can't be changed later during application lifecycle, because Wijmo controls have complex structure, and the control may need to propagate this attribute value to its internal element to work properly.

Because of this, to read or change control's **tabindex** dynamically, you should do it using this property.

Inherited From
Control
Type
number

text

Gets or sets the text shown on the control.

Inherited From
DropDown
Type
string

trimText

Gets or sets a value that determines whether values in the control's input element should be trimmed by removing leading and trailing spaces.

The default value for this property is **true**.

To see leading and trailing spaces in the drop-down list items, you may have to apply a CSS rule such as this one:

```css .wj-listbox-item { white-space: pre; } ```

Inherited From
ComboBox
Type
boolean

virtualizationThreshold

Gets or sets the minimum number of rows and/or columns required to enable virtualization in the drop-down ListBox.

The default value for this property is a very big number, meaning virtualization is disabled. To enable virtualization, set its value to 0 or a positive number.

For more detals, please see the ListBox.virtializationThreshold property.

Inherited From
ComboBox
Type
number

Methods

addEventListener

addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean, passive?: boolean): void

Adds an event listener to an element owned by this Control.

The control keeps a list of attached listeners and their handlers, making it easier to remove them when the control is disposed (see the dispose and removeEventListener methods).

Failing to remove event listeners may cause memory leaks.

The passive parameter is set to false by default, which means the event handler may call event.preventDefault(). If you are adding passive handlers to touch or wheel events, setting this parameter to true will improve application performance.

For details on passive event listeners, please see Improving scrolling performance with passive listeners.

Parameters
  • target: EventTarget

    Target element for the event.

  • type: string

    String that specifies the event.

  • fn: any

    Function to execute when the event occurs.

  • capture: boolean Optional

    Whether the listener should be handled by the control before it is handled by the target element.

  • passive: boolean Optional

    Indicates that the handler will never call preventDefault().

Inherited From
Control
Returns
void

applyTemplate

applyTemplate(classNames: string, template: string, parts: Object, namePart?: string): HTMLElement

Applies the template to a new instance of a control, and returns the root element.

This method should be called by constructors of templated controls. Therefore, this method is not available. It is responsible for binding the template parts to the corresponding control members.

For example, the code below applies a template to an instance of an InputNumber control. The template must contain elements with the 'wj-part' attribute set to 'input', 'btn-inc', and 'btn-dec'. The control members '_tbx', '_btnUp', and '_btnDn' will be assigned references to these elements.

this.applyTemplate('wj-control wj-inputnumber', templateString, {
  _tbx: 'input',
  _btnUp: 'btn-inc',
  _btnDn: 'btn-dec'
}, 'input');

```

Parameters
  • classNames: string

    Names of classes to add to the control's host element.

  • template: string

    An HTML string that defines the control template.

  • parts: Object

    A dictionary of part variables and their names.

  • namePart: string Optional

    Name of the part to be named after the host element. This determines how the control submits data when used in forms.

Inherited From
Control
Returns
HTMLElement

beginUpdate

beginUpdate(): void

Suspends notifications until the next call to endUpdate.

Inherited From
Control
Returns
void

containsFocus

containsFocus(): boolean

Checks whether this control contains the focused element.

Inherited From
Control
Returns
boolean

deferUpdate

deferUpdate(fn: Function): void

Executes a function within a beginUpdate/endUpdate block.

The control will not be updated until the function has been executed. This method ensures endUpdate is called even if the function throws an exception.

Parameters
Inherited From
Control
Returns
void

dispose

dispose(): void

Disposes of the control by removing its association with the host element.

The dispose method automatically removes any event listeners added with the addEventListener method.

Calling the dispose method is important in applications that create and remove controls dynamically. Failing to dispose of the controls may cause memory leaks.

Inherited From
Control
Returns
void

Static disposeAll

disposeAll(e?: HTMLElement): void

Disposes of all Wijmo controls contained in an HTML element.

Parameters
Inherited From
Control
Returns
void

endUpdate

endUpdate(shouldInvalidate?: boolean): void

Resumes notifications suspended by calls to beginUpdate.

Parameters
  • shouldInvalidate: boolean Optional

    should invalidate the control. Default value for this parameter is true.

Inherited From
Control
Returns
void

focus

focus(): void

Sets the focus to this control.

Inherited From
Control
Returns
void

Static getControl

getControl(element: any): Control

Gets the control that is hosted in a given DOM element.

Parameters
  • element: any

    The DOM element that hosts the control, or a CSS selector for the host element (e.g. '#theCtrl').

Inherited From
Control
Returns
Control

getDisplayText

getDisplayText(index?: number, trimText?: this): string

Gets the string displayed in the input element for the item at a given index (always plain text).

Parameters
  • index: number Optional

    The index of the item to retrieve the text for.

  • trimText: this Optional

    Optionally override the value of the trimText property.

Inherited From
ComboBox
Returns
string

getTemplate

getTemplate(): string

Gets the HTML template used to create instances of the control.

This method traverses up the class hierarchy to find the nearest ancestor that specifies a control template. For example, if you specify a prototype for the ComboBox control, which does not specify a template, it will override the template defined by the DropDown base class (the nearest ancestor that does specify a template).

Inherited From
Control
Returns
string

hide

hide(): void

Hides the menu.

This method is useful if you want to hide a context menu displayed with the show method.

Returns
void

indexOf

indexOf(search: string, fullMatch: boolean, dry?: boolean): number

Gets the index of the first item that matches a given string.

Parameters
  • search: string

    String to search for.

  • fullMatch: boolean

    Whether to look for a full match or just the start of the string.

  • dry: boolean Optional
Inherited From
ComboBox
Returns
number

initialize

initialize(options: any): void

Initializes the control by copying the properties from a given object.

This method allows you to initialize controls using plain data objects instead of setting the value of each property in code.

For example:

grid.initialize({
  itemsSource: myList,
  autoGenerateColumns: false,
  columns: [
    { binding: 'id', header: 'Code', width: 130 },
    { binding: 'name', header: 'Name', width: 60 } 
  ]
});



// is equivalent to grid.itemsSource = myList; grid.autoGenerateColumns = false; // etc.

The initialization data is type-checked as it is applied. If the initialization object contains unknown property names or invalid data types, this method will throw.

Parameters
  • options: any

    Object that contains the initialization data.

Inherited From
Control
Returns
void

invalidate

invalidate(fullUpdate?: boolean): void

Invalidates the control causing an asynchronous refresh.

Parameters
  • fullUpdate: boolean Optional

    Whether to update the control layout as well as the content.

Inherited From
Control
Returns
void

Static invalidateAll

invalidateAll(e?: HTMLElement): void

Invalidates all Wijmo controls contained in an HTML element.

Use this method when your application has dynamic panels that change the control's visibility or dimensions. For example, splitters, accordions, and tab controls usually change the visibility of its content elements. In this case, failing to notify the controls contained in the element may cause them to stop working properly.

If this happens, you must handle the appropriate event in the dynamic container and call the invalidateAll method so the contained Wijmo controls will update their layout information properly.

Parameters
  • e: HTMLElement Optional

    Container element. If set to null, all Wijmo controls on the page will be invalidated.

Inherited From
Control
Returns
void

onGotFocus

onGotFocus(e?: EventArgs): void

Raises the gotFocus event.

Parameters
Inherited From
Control
Returns
void

onInvalidInput

onInvalidInput(e: CancelEventArgs): void

Raises the invalidInput event.

If the event handler cancels the event, the control will keep the invalid input and the focus.

Parameters
Inherited From
Control
Returns
void

onIsDroppedDownChanged

onIsDroppedDownChanged(e?: EventArgs): void

Raises the isDroppedDownChanged event.

Parameters
Inherited From
DropDown
Returns
void

onIsDroppedDownChanging

onIsDroppedDownChanging(e: CancelEventArgs): boolean

Raises the isDroppedDownChanging event.

Parameters
Inherited From
DropDown
Returns
boolean

onItemClicked

onItemClicked(e?: EventArgs): void

Raises the itemClicked event.

Parameters
Returns
void

onItemsSourceChanged

onItemsSourceChanged(e?: EventArgs): void

Raises the itemsSourceChanged event.

Parameters
Inherited From
ComboBox
Returns
void

onLostFocus

onLostFocus(e?: EventArgs): void

Raises the lostFocus event.

Parameters
Inherited From
Control
Returns
void

onRefreshed

onRefreshed(e?: EventArgs): void

Raises the refreshed event.

Parameters
Inherited From
Control
Returns
void

onRefreshing

onRefreshing(e?: EventArgs): void

Raises the refreshing event.

Parameters
Inherited From
Control
Returns
void

onSelectedIndexChanged

onSelectedIndexChanged(e?: EventArgs): void

Raises the selectedIndexChanged event.

Parameters
Inherited From
ComboBox
Returns
void

onTextChanged

onTextChanged(e?: EventArgs): void

Raises the textChanged event.

Parameters
Inherited From
DropDown
Returns
void

refresh

refresh(fullUpdate?: boolean): void

Refreshes the control.

Parameters
  • fullUpdate: boolean Optional

    Whether to update the control layout as well as the content.

Inherited From
Control
Returns
void

Static refreshAll

refreshAll(e?: HTMLElement): void

Refreshes all Wijmo controls contained in an HTML element.

This method is similar to invalidateAll, except the controls are updated immediately rather than after an interval.

Parameters
  • e: HTMLElement Optional

    Container element. If set to null, all Wijmo controls on the page will be invalidated.

Inherited From
Control
Returns
void

removeEventListener

removeEventListener(target?: EventTarget, type?: string, fn?: any, capture?: boolean): number

Removes one or more event listeners attached to elements owned by this Control.

Parameters
  • target: EventTarget Optional

    Target element for the event. If null, removes listeners attached to all targets.

  • type: string Optional

    String that specifies the event. If null, removes listeners attached to all events.

  • fn: any Optional

    Handler to remove. If null, removes all handlers.

  • capture: boolean Optional

    Whether the listener is capturing. If null, removes capturing and non-capturing listeners.

Inherited From
Control
Returns
number

selectAll

selectAll(): void

Sets the focus to the control and selects all its content.

Inherited From
DropDown
Returns
void

show

show(position?: any): void

Shows the menu at a given location.

Parameters
  • position: any Optional

    An optional **MouseEvent** or reference element that determines the position where the menu should be displayed. If not provided, the menu is displayed at the center of the screen. This method is useful if you want to use the menu as a context menu attached to one or more elements on the page. For example:

    import { Menu } from '@mescius/wijmo.input';
    let theMenu = new Menu(document.createElement('div'), {
        itemsSource: 'New,Open,Save,Exit'.split(','),
        itemClicked: s => {
            alert('thanks for picking ' + s.selectedIndex);
        }
    });



    // use it as a context menu for one or more elements let element = document.getElementById('btn'); element.addEventListener('contextmenu', e => { e.preventDefault(); theMenu.show(e); });

    You can adjust the position of the menu by setting the margin of the menu's dropdown. For example, the code below causes the menu to be displayed 20 pixels away from the point that was clicked:

    // add 20-pixel offset to the menu
    theMenu.dropDown.style.margin = '20px';



    // show menu as a context menu let element = document.getElementById('btn'); element.addEventListener('contextmenu', e => { e.preventDefault(); theMenu.show(e); });

Returns
void

Events

gotFocus

Occurs when the control gets the focus.

Inherited From
Control
Arguments
EventArgs

invalidInput

Occurs when invalid input is detected.

Invalid input may occur when the user types or pastes a value that cannot be converted to the proper type, or a value that is outside the valid range.

If the event handler cancels the event, the control will retain the invalid content and the focus, so users can correct the error.

If the event is not canceled, the control will ignore the invalid input and will retain the original content.

Inherited From
Control
Arguments
CancelEventArgs

isDroppedDownChanged

Occurs after the drop down is shown or hidden.

Inherited From
DropDown
Arguments
EventArgs

isDroppedDownChanging

Occurs before the drop down is shown or hidden.

Inherited From
DropDown
Arguments
CancelEventArgs

itemClicked

Occurs when the user picks an item from the menu.

The handler can determine which item was picked by reading the event sender's selectedIndex property.

Arguments
EventArgs

itemsSourceChanged

Occurs when the value of the itemsSource property changes.

Inherited From
ComboBox
Arguments
EventArgs

lostFocus

Occurs when the control loses the focus.

Inherited From
Control
Arguments
EventArgs

refreshed

Occurs after the control has refreshed its contents.

Inherited From
Control
Arguments
EventArgs

refreshing

Occurs when the control is about to refresh its contents.

Inherited From
Control
Arguments
EventArgs

selectedIndexChanged

Occurs when the value of the selectedIndex property changes.

Inherited From
ComboBox
Arguments
EventArgs

textChanged

Occurs when the value of the text property changes.

Inherited From
DropDown
Arguments
EventArgs