Skip to content

mwbrooks/cordova-plugin-menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

Native Menu Plugin for Apache Cordova

Overview

The cordova-plugin-menu provides an HTML interface to define a menu types. Each Cordova platform will then render the appropriate native menu from the HTML.

The implementation is loose polyfill of the W3C HTMLMenuElement.

Platform Support

  • Android
  • BlackBerry 10
  • iOS

Example

<menu type="toolbar" label="Tweets">
    <command label="Back" icon="img/back.png" disabled="false" action="Page.back();" accesskey="back" />
    <command label="New"  icon="img/new.png"  disabled="false" action="Page.new();"  accesskey=""     />
</menu>

<menu type="context">
    <command label="Tweets"  icon="bubble.png"  disabled="false" action="Page.tweets();"  accesskey=""       />
    <command label="Replies" icon="reply.png"   disabled="false" action="Page.replies();" accesskey=""       />
    <command label="Search"  icon="search.png"  disabled="false" action="Page.search();"  accesskey="search" />
    <command label="Profile" icon="profile.png" disabled="false" action="Page.profile();" accesskey=""       />
</menu>

HTML API

Menus and commands are defined in the DOM and represented as HTML. Similar to other HTML elments, you can define the role of the menu and commands with HTML attributes. During runtime, you can interact with the menu and commands using JavaScript.

<menu> API

<menu type="toolbar">

Create a toolbar menu.

  • Android: Creates a title bar.
  • BlackBerry: @DISCUSS
  • iOS: Creates a native ToolBar. The Cordova webview is repositioned below the toolbar.

<menu type="context">

Create a context menu. This menu is typically invoked by the device's menu button.

  • Android: Creates an Android menu that is invoked by the menu button.
  • BlackBerry: Creates a BlackBerry menu that is invoked by the menu button.
  • iOS: Creates a native TabBar. The Cordova webview is repositioned above the TabBar.

<menu label="Home">

Add a title to the menu. The title will behave differently for a type="toolbar" and type="context" menu.

  • Android: Ignored because context menus do not have titles.
  • BlackBerry: Ignored because context menus do not have titles.
  • iOS: A title is added to the ToolBar but ignored for the TabBar.

<command> API

<command label="toolbar">

Add a title to a command button.

<command icon="context">

Add an icon image to a command button.

<command disabled="true">

Enable or disabled a command button.

  • Android: Disabled commands are hidden.
  • BlackBerry: Disabled commands are hidden.
  • iOS: Disabled commands are faded.

<command action="Home">

Attach callback function or JavaScript expression to a command.

Inline HTML can use a JavaScript expression such as:

<command action="someGlobalFunction();">
<command action="console.log('hello'); console.log('world');">

JavaScript can attach callback functions as such:

// get a handle to a command element
var cmd = document.getElementById('someCommandId');

// anonymous function
cmd.setAttribute('action', function() {
    console.log('hello from an anonymous function!');
});

// function handle
var callback = function() {
    console.log('hello from a callback function!');
});

cmd.setAttribute('action', callback);

JavaScript API

Similar to other HTML elements, you can create and manipulate <menu> and <command> using JavaScript.

HTML:

<menu type="toolbar">
    <command label="Home" />
</menu>

JavaScript:

var menu = document.createElement('menu');
menu.setAttribute('type', 'toolbar');
document.body.appendChild(menu);

var command = document.createElement('command');
command.setAttribute('label', 'Home');
command.setAttribute('action', function() {
    console.log('Home');
});
menu.appendChild(command);

Want to contribute?

Report or fix an issue

We use GitHub Issues

By the way, you rock! Thanks for helping us improve cordova-plugin-menu!

Pull Requests

Pull requests are welcome!

We appreciate the use of topic branches.

git checkout -b issue_23

# code

git commit -m "Issue 23: Fix a bad bug."

git push origin issue_23

# send pull request from branch issue_23 to mwbrooks:master

About

Native Menu Plugin for Apache Cordova and PhoneGap.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •