Interface MenuActionOptions

interface MenuActionOptions {
    cls?: string;
    label?: string;
    name: string;
}

Properties

Properties

cls?: string

CSS class name(s) to use for the icon of the action item.

label?: string

The label to display for the action item. If not defined, the name is used.

name: string

unique name for the menu action, which is used in the event fired when the action is clicked.