| 1234567891011121314151617181920212223242526272829303132 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Tree.aspx.cs" Inherits="WebForm.Platform.Dictionary.Tree" %>
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title></title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div id="tree"></div>
- </form>
- <script type="text/javascript">
- var AppID = '<%=Request.QueryString["appid"]%>';
- var roadTree = null;
- $(function ()
- {
- roadTree = new RoadUI.Tree({ id: "tree", path: "Tree1.ashx?ischild=1", refreshpath: "TreeRefresh.ashx", onclick: openUrl });
- });
- function openUrl(json)
- {
- parent.frames[1].location = "Body.aspx?id=" + json.id + "&appid=" + AppID;
- }
- function reLoad(id)
- {
- roadTree.refresh(id);
- }
- </script>
- </body>
- </html>
|