Example 10: Listening For DOM-Related Events : Menu 2 « GUI Components « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Dojo toolkit
7. Event
8. Event onMethod
9. Ext JS
10. Form Control
11. GUI Components
12. HTML
13. Javascript Collections
14. Javascript Objects
15. Javascript Properties
16. jQuery
17. Language Basics
18. Mochkit
19. Mootools
20. Node Operation
21. Object Oriented
22. Page Components
23. Rico
24. Scriptaculous
25. Security
26. SmartClient
27. Style Layout
28. Table
29. Utilities
30. Window Browser
31. YUI Library
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript DHTML » GUI Components » Menu 2 
Example 10: Listening For DOM-Related Events
 

<!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 10: Listening For DOM-Related Events</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">

        <!-- Logger CSS -->
        <link rel="stylesheet" type="text/css" href="./build/logger/assets/logger.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; }

            p em {
            
                text-decoration:underline;
            
            }

            #logs {

                position:absolute;
                bottom:0;
                right:0;
            
            }

            .example10 {

                background-color:#9c9;
            
            }

        </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>
            
        <!-- Logger source file -->
        <script type="text/javascript" src="./build/logger/logger.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) {

                // Generic event handler for the Menu instance's DOM-related events
                
                function onMenuEvent(p_sType, p_aArguments) {
                
                    var oDOMEvent = p_aArguments[0];
    
                    YAHOO.log(
                        (
                        "Id: " this.id + ", " +
                        "Custom Event Type: " + p_sType + ", " +                  
                        "DOM Event Type: " + oDOMEvent.type
                        ),
                        "info",
                        "example10"
                    );
                }
    
    
                /*
                    Generic event handler for each MenuItem instance's 
                    DOM-related events
                */
    
                function onMenuItemEvent(p_sType, p_aArguments) {
    
                    var oDOMEvent = p_aArguments[0];
    
                    YAHOO.log(
                        (
                        "Index: " this.index + ", " +
                        "Group Index: " this.groupIndex + ", " +
                        "Custom Event Type: " + p_sType + ", " +                  
                        "DOM Event Type: " + oDOMEvent.type
                        ),
                        "info",
                        "example10"
                    );
                    
                }


                // Create a menu

                var oMenu = new YAHOO.widget.Menu("basicmenu"),

                    // Create the MenuItem instances and add them to the menu

                    aMenuItemData = [
                
                        "MenuItem 0",
                        "MenuItem 1",
                        "MenuItem 2",
                        "MenuItem 3",
                        "MenuItem 4"

                    ],

                    nMenuItems = aMenuItemData.length,

                    oMenuItem;
                


                for(var i=0; i<nMenuItems; i++) {

                    oMenuItem = oMenu.addItem(aMenuItemData[i]);

                    oMenuItem.mouseOverEvent.subscribe(onMenuItemEvent);
                    oMenuItem.mouseOutEvent.subscribe(onMenuItemEvent);
                    oMenuItem.mouseDownEvent.subscribe(onMenuItemEvent);
                    oMenuItem.mouseUpEvent.subscribe(onMenuItemEvent);
                    oMenuItem.clickEvent.subscribe(onMenuItemEvent);
                    oMenuItem.keyDownEvent.subscribe(onMenuItemEvent);
                    oMenuItem.keyUpEvent.subscribe(onMenuItemEvent);
                    oMenuItem.keyPressEvent.subscribe(onMenuItemEvent);

                }

                oMenu.render(document.body);
    
                oMenu.show();


                // Focus the first MenuItem instance

                oMenu.getItem(0).focus();
                

                // Disable the third MenuItem instance

                oMenu.getItem(2).cfg.setProperty("disabled"true);


                // Subscribe to the menu's DOM-related events

                oMenu.mouseOverEvent.subscribe(onMenuEvent);
                oMenu.mouseOutEvent.subscribe(onMenuEvent);
                oMenu.mouseDownEvent.subscribe(onMenuEvent);
                oMenu.mouseUpEvent.subscribe(onMenuEvent);
                oMenu.clickEvent.subscribe(onMenuEvent);
                oMenu.keyDownEvent.subscribe(onMenuEvent);
                oMenu.keyUpEvent.subscribe(onMenuEvent);
                oMenu.keyPressEvent.subscribe(onMenuEvent);


                var oLogs = document.createElement("div");
                oLogs.id = "logs";
                
                document.body.appendChild(oLogs);

                var oLogReader = new YAHOO.widget.LogReader("logs");

            }


            YAHOO.util.Event.addListener(window, "load", YAHOO.example.onWindowLoad);
            
        </script>
        
    </head>
    <body>

        <h1>Example 10: Listening For DOM-Related Events</h1>
        <p>This example demonstrates how to listen for DOM-related events.  Interaction with the Menu will result in event information being output to the console.  <em>Please note</em>: Disabled MenuItem instances do not fire DOM events.  This is demonstrated with the MenuItem named "MenuItem 2."</p>

    </body>
</html>
           
         
  
yui.zip( 3,714 k)
Related examples in the same category
1. Popup Menu
2. AtJsMenu Demo
3. Example 1: Basic Menu From Existing Markup
4. Example 2: Basic Menu From Pure JavaScript
5. Example 3: Grouped MenuItem Instances From Existing Markup
6. Example 4: Grouped MenuItem Instances Using Pure JavaScript
7. Example 5: Grouped MenuItem Instances With Titles From Existing Markup
8. Example 6: Grouped MenuItem Instances With Titles Using Pure JavaScript
9. Example 7: Multi-tiered Menu From Existing Markup
10. Example 8: Multi-tiered Menu From Pure JavaScript
11. Example 9: Handling Click Events
12. Example 11: MenuItem Configuration Properties
13. Example 12: Setting Configuration Properties At Runtime
14. Example 13: Multi-tiered Menu with Progressive Rendering of Submenus
15. Website Left Nav Example (with submenus built from JavaScript) 1
16. Website Left Nav Example (with submenus built from markup) 2
17. OS-Style Programs Menu Example
18. Website Top Nav (with submenus built from JavaScript) 3
19. Website Top Nav (with submenus built from markup) 4
20. Drop down menu and sub menu
21. Vertical menu and image menu
22. Emulate XP start menu
23. xmenu-xlayer-3
24. tree-menu
25. menu for applications
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.