File: treeviewcontextmenu_source.html

package info (click to toggle)
yui 2.9.0.dfsg.0.1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 89,324 kB
  • sloc: php: 52,404; java: 4,329; xml: 748; makefile: 37
file content (257 lines) | stat: -rw-r--r-- 6,986 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<!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: Adding A Context Menu To A TreeView (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 TreeView -->
        <link rel="stylesheet" type="text/css" href="../../build/treeview/assets/skins/sam/treeview.css">
         

        <!-- CSS for Menu -->

        <link rel="stylesheet" type="text/css" href="../../build/menu/assets/skins/sam/menu.css"> 


        <!-- Page-specific styles -->

        <style type="text/css">

            h1 { 

                font-weight: bold; 
                margin: 0 0 1em 0;
            }

            body {
            
                padding: 1em;
            
            }

            p, ul {

                margin: 1em 0;

            }

            
            p em,
            #operainstructions li em {

                font-weight: bold;

            }

            #operainstructions {

                list-style-type: square;
                margin-left: 2em;

            }

        </style>


        <!-- Dependency source files -->

        <script type="text/javascript" src="../../build/yahoo-dom-event/yahoo-dom-event.js"></script>
        <script type="text/javascript" src="../../build/container/container_core.js"></script>
        <script type="text/javascript" src="../../build/treeview/treeview.js"></script>


        <!-- Menu source file -->

        <script type="text/javascript" src="../../build/menu/menu.js"></script>


        <!-- Page-specific script -->

        <script type="text/javascript">

        /*
             Initialize the TreeView instance when the "mytreeview" <div>
             is ready to be scripted.
        */

        YAHOO.util.Event.onAvailable("mytreeview", function () {

            // Creates a TextNode instance and appends it to the TreeView

            function buildRandomTextBranch(p_oNode) {

                var oTextNode,
                    i;

                if (p_oNode.depth < 6) {

                    for (i = 0; i < Math.floor(Math.random() * 4); i++) {

                        oTextNode = new YAHOO.widget.TextNode(p_oNode.label + "-" + i, p_oNode, false);

                        buildRandomTextBranch(oTextNode);

                    }

                }

            }


            // Create a TreeView instance

            var oTreeView = new YAHOO.widget.TreeView("mytreeview");

            var n, oTextNode;

            for (n = 0; n < Math.floor((Math.random()*4) + 3); n++) {

                oTextNode = new YAHOO.widget.TextNode("label-" + n, oTreeView.getRoot(), false);

                /*
                     Add the TextNode instance to the map, using its
                     HTML id as the key.
                */

                buildRandomTextBranch(oTextNode);

            }

            oTreeView.draw();


            /*
                 The YAHOO.widget.TextNode instance whose "contextmenu"
                 DOM event triggered the display of the
                 ContextMenu instance.
            */

            var oCurrentTextNode = null;


            /*
                 Adds a new TextNode as a child of the TextNode instance
                 that was the target of the "contextmenu" event that
                 triggered the display of the ContextMenu instance.
            */

            function addNode() {

                var sLabel = window.prompt("Enter a label for the new node: ", ""),
                    oChildNode;

                if (sLabel && sLabel.length > 0) {

                    oChildNode = new YAHOO.widget.TextNode(sLabel, oCurrentTextNode, false);

                    oCurrentTextNode.refresh();
                    oCurrentTextNode.expand();

                }

            }


            /*
                 Edits the label of the TextNode that was the target of the
                 "contextmenu" event that triggered the display of the
                 ContextMenu instance.
            */

            function editNodeLabel() {

                var sLabel = window.prompt("Enter a new label for this node: ", oCurrentTextNode.getLabelEl().innerHTML);

                if (sLabel && sLabel.length > 0) {

                    oCurrentTextNode.getLabelEl().innerHTML = sLabel;

                }

            }


            /*
                Deletes the TextNode that was the target of the "contextmenu"
                event that triggered the display of the ContextMenu instance.
            */

            function deleteNode() {

                oTreeView.removeNode(oCurrentTextNode);
                oTreeView.draw();

            }


            /*
                "contextmenu" event handler for the element(s) that
                triggered the display of the ContextMenu instance - used
                to set a reference to the TextNode instance that triggered
                the display of the ContextMenu instance.
            */

            function onTriggerContextMenu(p_oEvent) {

                var oTarget = this.contextEventTarget;

                /*
                     Get the TextNode instance that that triggered the
                     display of the ContextMenu instance.
                */

                oCurrentTextNode = oTreeView.getNodeByElement(oTarget);

                if (!oCurrentTextNode) {
                    // Cancel the display of the ContextMenu instance.

                    this.cancel();

                }

            }


            /*
                Instantiate a ContextMenu:  The first argument passed to the constructor
                is the id for the Menu element to be created, the second is an
                object literal of configuration properties.
            */

            var oContextMenu = new YAHOO.widget.ContextMenu(
                "mytreecontextmenu",
                {
                    trigger: "mytreeview",
                    lazyload: true,
                    itemdata: [
                        { text: "Add Child Node", onclick: { fn: addNode } },
                        { text: "Edit Node Label", onclick: { fn: editNodeLabel } },
                        { text: "Delete Node", onclick: { fn: deleteNode } }
                    ]
                }
            );


            /*
                 Subscribe to the "contextmenu" event for the element(s)
                 specified as the "trigger" for the ContextMenu instance.
            */

            oContextMenu.subscribe("triggerContextMenu", onTriggerContextMenu);

        });

        </script>

    </head>
    <body class="yui-skin-sam">
        <div id="mytreeview"></div>
    </body>
</html>