webgui/www/extras/yui/examples/menu/example11.html
JT Smith cfd09a5cb6 upgraded to yui 0.12.0
upgraded to yui-ext 0.33 rc2
2006-11-28 02:23:34 +00:00

124 lines
No EOL
4 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Example: MenuItem Configuration Properties (YUI Library)</title>
<!-- Standard reset and fonts -->
<link rel="stylesheet" type="text/css" href="../../build/reset/reset.css">
<link rel="stylesheet" type="text/css" href="../../build/fonts/fonts.css">
<!-- CSS for Menu -->
<link rel="stylesheet" type="text/css" href="../../build/menu/assets/menu.css">
<!-- Page-specific styles -->
<style type="text/css">
body { margin:.5em; }
h1 { font-weight:bold; }
li.yuimenuitem a em {
font-style:italic;
}
li.yuimenuitem strong {
font-weight:bold;
}
p#clicknote {
margin-top:1em;
}
p#clicknote em {
font-weight:bold;
}
</style>
<!-- Namespace source file -->
<script type="text/javascript" src="../../build/yahoo/yahoo.js"></script>
<!-- Dependency source files -->
<script type="text/javascript" src="../../build/event/event.js"></script>
<script type="text/javascript" src="../../build/dom/dom.js"></script>
<!-- Container source file -->
<script type="text/javascript" src="../../build/container/container_core.js"></script>
<!-- Menu source file -->
<script type="text/javascript" src="../../build/menu/menu.js"></script>
<!-- Page-specific script -->
<script type="text/javascript">
// "load" event handler for the window
YAHOO.example.onWindowLoad = function(p_oEvent) {
// Create a menu
var oMenu = new YAHOO.widget.Menu("basicmenu", { fixedcenter: true } );
oMenu.addItems([
{ text: "Selected MenuItem", selected: true },
{ text: "Disabled MenuItem", disabled: true },
{ text: "MenuItem With Help Text", helptext: "Help Me!" },
{ text: "MenuItem With A URL", url: "http://www.yahoo.com!" },
{ text: "MenuItem With Emphasis", emphasis: true },
{ text: "MenuItem With Strong Emphasis", strongemphasis: true },
{ text: "Checked MenuItem", checked: true }
]);
oMenu.render(document.body);
oMenu.show();
function onMenuToggleMouseDown(p_oEvent) {
YAHOO.util.Event.stopPropagation(p_oEvent);
oMenu.show();
}
YAHOO.util.Event.addListener("menutoggle", "mousedown", onMenuToggleMouseDown);
}
YAHOO.util.Event.addListener(window, "load", YAHOO.example.onWindowLoad);
</script>
</head>
<body>
<h1>Example: MenuItem Configuration Properties (YUI Library) <em>[<a href="index.html">Examples Home</a>]</em></h1>
<p>This example demonstrates how to set configuration properties when instantiating a MenuItem instance.</p>
<p id="clicknote"><em>Note:</em> By default clicking outside of a menu will hide it. Additionally, menu items without a submenu or a URL to navigate will hide their parent menu when clicked. Click the "Show Menu" button below to make the menu visible if it is hidden.</p>
<button id="menutoggle">Show Menu</button>
</body>
</html>