behavior:menu

This behavior provides basic hierarchical menu functionality

Elements

that have this behavior applied by default to:

Model

Example of menu declaration in Sciter:

<menu.popup>
  <li id="file-open">Open File <span.accesskey>Ctrl+O</span></li>
  <hr>
  <li id="file-save">Save File <span.accesskey>Ctrl+S</span></li>
  <li id="file-save-as">Save File as ...<span.accesskey>Ctrl+Shift+S</span></li>
</menu>

<li> elements or any other block element that has role=menu-item attribute defined are treated as selectable menu items and can generate MENU_ITEM_CLICK events.

For example, this markup:

<menu.popup>
  <table>
    <tr><td role="menu-item" id="red">Red</td>
        <td role="menu-item" id="green">Green</td>
        <td role="menu-item" id="blue">Blue</td></tr>
    <tr><td role="menu-item" id="cyan">Cyan</td>
        <td role="menu-item" id="magenta">Magenta</td>
        <td role="menu-item" id="yellow">Yellow</td></tr>
  </table>
</menu>

will render popup menu with menu items organized in 3x2 table.

Menu items may have sub-<menu>s

<menu.popup>
  <li id="file-open">Open File <span.accesskey>Ctrl+O</span></li>
  <hr>
  <li>Recent Files
    <menu id="LRU">
      <li>My file.htm</li>
      <li>His file.htm</li>
      <li>Her file.htm</li>
    </menu>
  </li>
</menu>

Attributes

behavior:menu is not using any specific attributes.  

Methods

Normally menus are invisible - declared with display:none styles. As menus have quite specific life cycle their visibility cannot be described in terms of CSS.

To show the menu you shall call menuOwnerElement.popup(menuElement, ...). Where the menuOwnerElement is the DOM element that will "own" the menu and menuElement is one of <menu> elements that you want to present for the owner element.

States

Events

MENU_ITEM_CLICK
- posted when user clicks on menu item, Event.target is the menu item.
MENU_ITEM_ACTIVE
- is send when user activates the menu by mouse hovering or by navigating keys. Event.target is the menu item.
Menu item events get propagated in so called menu tree order. Element that owns the menu will receive all MENU_ITEM_CLICKs originated from menu it owns.

Value

N/A

Menu item clicks handling in script

raw onControlEvent handler
var edit = $(input#some);
edit.onControlEvent = function(evt)
{
  switch(evt.type) {
    case Event.MENU_ITEM_CLICK: /* evt.target is the menu item */ break;
  }
}

on() subscription

var edit = $(input#some);
edit.on("click", "li#file-open", function(evt) { 
  // 'this' here is that li#file-open item  
});

decorators.tis handler

include "decorators.tis";
@click @on "li#file-open" :: ... event handling code ...;