����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.15.223.214 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/admin/assets/plugins/dynatree/doc/ |
Upload File : |
<?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>dynatree - temporary tests</title> <script src="../jquery/jquery.js" type="text/javascript"></script> <script src="../jquery/jquery-ui.custom.js" type="text/javascript"></script> <script src="../jquery/jquery.cookie.js" type="text/javascript"></script> <link href="../src/skin/ui.dynatree.css" rel="stylesheet" type="text/css"> <script src="../src/jquery.dynatree.js" type="text/javascript"></script> <!-- Add code to initialize the tree when the document is loaded: --> <script type='text/javascript'> /* <![CDATA[ */ $(function(){ $("#tree").dynatree({ rootVisible: true, rootCollapsible: false, keyboard: true, persist: true, children: [ {title: "Node 1", expand: true, key: "_1", children: [ {title: "Node 1.1" }, {title: "Node 1.2", isFolder: true, expand: true, key: "_12", children: [ {title: "Node 1.2.1" }, {title: "Node 1.2.2", key: "_122", children: [ {title: "Node 1.2.2.1" }, {title: "Node 1.2.2.2" }, {title: "Node 1.2.2.3" } ] }, {title: "Node 1.2.3", children: [] } ] }, {title: "Node 1.3" } ] }, {title: "Node 2" } ], onSelect: function(dtnode) { $("#echoSelected").text(dtnode.data.title); //alert("You selected " + dtnode.data.title); }, onLazyRead: function(dtnode) { logMsg("Benchmarking mode='" + dtnode.data.mode + "' done."); } }); $("#tree2").dynatree({ onSelect: function(dtnode) { $("#echoSelected").text(dtnode.data.title); //alert("You selected " + dtnode.data.title); } }); $("#btnRemoveDiv").click(function(){ logMsg("removing %o", $("#tree")); $("#tree").remove(); }); $("#btn50").click(function(){ $("#tree").dynatree("getRoot").append({title: 'i50', expand: true}); }); }); /* ]]> */ </script> </head> <body> <p>This file is only temporarily used to reproduce issues.</p> <p style="color: red;">Using doctype XHTML 1.0 Strict.</p> <div id='tree'> </div> <div>Selected node: <span id="echoSelected">-</span></div> <div>Focused node: <span id="echoFocused">-</span></div> <p> <button id="btnRemoveDiv">Remove main div</button> <button id="btn50">issue #50</button> <button id="btnDiv">dynamic div issue</button> </p> <div id='tree2'> <ul> <li data="{title: 'node1'}">node1</li> <li data="{title: 'node2'}">node2</li> </ul> </div> <p><a href="http://dynatree.googlecode.com">jquery.dynatree.js</a></p> </body> </html>