为了账号安全,请及时绑定邮箱和手机立即绑定

DevExpress控件ASPxTreeView问题

DevExpress控件ASPxTreeView问题

茅侃侃 2018-12-06 17:20:38
<%@ Page Language="C#" AutoEventWireup="true" Codebehind="DormTreeView.aspx.cs" Inherits="PdmlWeb.Pages.StuDorm.DormTreeView"%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>Untitled Page</title></head><body> <form id="form1" runat="server"> <dx:ASPxTreeView ID="dxtvOrg" Width="100%" ShowExpandButtons="true" runat="server" AutoPostBack="true" OnNodeClick="dxtvOrg_NodeClick"> </dx:ASPxTreeView> </form></body></html> protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { setTreeViewData(); } } protected void dxtvOrg_NodeClick(object source, TreeViewNodeEventArgs e) { if (!"ALL".Equals(e.Node.Name)) { sessionInfo = (sSessionInfo)Session["sessionInfo"]; sessionInfo.dataInfo = e.Node.Name; sessionInfo.dataInfoTxt = WebUtils.GetOrgAllName((DataTable)Session["dtOrg"], int.Parse(e.Node.Name)); Session.Add("sessionInfo", sessionInfo); switch (sessionInfo.selectMenu) { case eMenuID.DormInfo: Response.Write("<script>window.parent.window.frames[2].location.href='DormInfo.aspx';</script>"); break; case eMenuID.DormQuery: Response.Write("<script>window.parent.window.frames[2].location.href='DormQuery.aspx';</script>"); break; case eMenuID.DormFinCost: case eMenuID.DormFinQuery: Response.Write("<script>window.parent.window.frames[2].location.href='DormFin.aspx';</script>"); break; case eMenuID.DormFinRpt: Response.Write("<script>window.parent.window.frames[2].location.href='DormFinRpt.aspx';</script>"); break; } } } 用ASPxTreeView生成动态树,点击树时,第三级节点会向右平铺。注:页面加载时没有任何问题,点击第三级节点时,同级的节点会依次横向排列。 如:第一节点        第二节点    第三节点1    第三节点2    第三节点3 点击后会出现下列这种情况: 第一节点   第二节点        第三节点1             第三节点2                  第三节点3
查看完整描述

2 回答

?
哔哔one

TA贡献1854条经验 获得超8个赞

该控件显示与浏览器版本有关系,在IE9下浏览正常。

查看完整回答
反对 回复 2019-01-21
  • 2 回答
  • 0 关注
  • 746 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信