相对于之前发过一个TreeView控件的使用方法

本次利用js操作,页面无刷新,性能提高

Css编码可能时我的模板页样式被继承下来,导致页面变乱,不需要的可以去掉

前台

    <style>
.tn td {
height: 18px;
line-height: 18px;
display: flex;
} .tn tr {
display: flex;
} .tn a {
line-height: 18px;
color: black;
}
</style>

Css Code

                        <asp:TreeView ID="tv_roleaction" runat="server" ShowCheckBoxes="All" CssClass="tn" ShowLines="True" CollapseImageToolTip="折叠">
</asp:TreeView>

Html Code

        var nodecheck = {
init: function () {
//配合asp treeview使用
//需在页面加载时设置 this.TreeView.Attributes.Add("onclick", "nodecheck.init()");
var element = event.srcElement;
if (element.tagName == "INPUT" && element.type == "checkbox") {
var checkedState = element.checked;
while (element.tagName != "TABLE") { //获取当前节点所在的table
element = element.parentElement;
}
this.SetChildChecked(element, checkedState);
this.SetParentChecked(element, checkedState);
}
},
SetChildChecked: function (table, checked) {
table = table.nextSibling;
if (table == null || !table.translate) //判断有没有子节点
return;
var childTables = table.getElementsByTagName("TABLE");//获取所有子节点所在的table
for (var tableIndex = 0; tableIndex < childTables.length; tableIndex++) {
this.SetNodeChecked(childTables[tableIndex], checked);
}
},
SetParentChecked: function (table, checked) {
if (table == null || table.rows[0].cells.length == 2) {
return;
}
var parentTable = table.parentElement.previousElementSibling;//获得父级table if (parentTable == null || !parentTable.translate) //没有父节点就停止
return; //判断父节点下有没有被选中的节点
node = parentTable.nextSibling;
var ifnochecked = true;
if (node == null || !node.translate) //判断有没有子节点 --没有子节点就停止
return;
var childTables = node.getElementsByTagName("TABLE");//获取所有子节点所在的table
for (var tableIndex = 0; tableIndex < childTables.length; tableIndex++) {
if (this.GetNodeChecked(childTables[tableIndex])) {
ifnochecked = false;
this.SetNodeChecked(parentTable, true);
break;
}
}
if (ifnochecked) {
this.SetNodeChecked(parentTable, false);
} this.SetParentChecked(parentTable, checked);
},
SetNodeChecked: function (table, checked) { //设置节点选中状态
if (this.GetNode(table).length == 1) {
checkboxes[0].checked = checked;
}
},
GetNodeChecked: function (table) { //获取节点选中状态
if (this.GetNode(table).length == 1) {
return checkboxes[0].checked;
}
},
GetNode: function (table) { //获取节点
var checkboxIndex = table.rows[0].cells.length - 1;
var cell = table.rows[0].cells[checkboxIndex];
return checkboxes = cell.getElementsByTagName("INPUT");
}
};

Js Code

后台

        protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//调用递归函数,完成树形结构的生成
AddTree(, (TreeNode)null);
this.tv_roleaction.Attributes.Add("onclick", "nodecheck.init()");
}
} //递归添加树的节点
public void AddTree(int ParentID, TreeNode pNode)
{
DataView dvTree = new DataView(SysActionBLL.GetInstance().GetList(""));
//过滤ParentID,得到当前的所有子节点
dvTree.RowFilter = "[FPARENTACTIONID] = " + ParentID; foreach (DataRowView Row in dvTree)
{
TreeNode Node = new TreeNode();
Node.Value = Row["FACTIONID"].ToString();
Node.Text = Row["FACTIONNAME"].ToString();
Node.Expanded = true;
if (pNode == null)
{ //添加根节点
tv_roleaction.Nodes.Add(Node);
}
else
{ //?添加当前节点的子节点
pNode.ChildNodes.Add(Node);
} //判断当前角色是否拥有该权限
if (roleaction.Count > && roleaction.Find(p => p.ToString() == Row["FACTIONID"].ToString()) != null)
{
Node.Checked = true;
}
AddTree(Int32.Parse(Row["FACTIONID"].ToString()), Node); //再次递归
}
} /// <summary>
/// 保存
/// </summary>
protected void btnSave_click(object sender, EventArgs e)
{
//获取选中节点的value集合
List<object> roleaction = new List<object>();
foreach (TreeNode node in tv_roleaction.CheckedNodes)
{
roleaction.Add(node.Value);
}
}

C# Code

asp TreeView控件的使用的更多相关文章

  1. 【ASP.NET 进阶】TreeView控件学习

    这几天上班没事做,也不好打酱油,学点没接触过的新东西吧,基本了解了下TreeView控件. TreeView 控件用于在树结构中显示分层数据,例如目录或文件目录等. 下面看代码吧: 1.效果图 2.静 ...

  2. ASP.NET - TreeView控件,只操作最后一级节点

    效果: 使用母板页进行,左右页面进行跳转. 绑定TreeView控件:http://www.cnblogs.com/KTblog/p/4792302.html 主要功能: 点击节点的时候,只操作最后一 ...

  3. TreeView控件例子

    XmL文件代码: <?xml version="1.0" encoding="utf-8" ?> <Area> <Province ...

  4. TreeView控件绑定数据库

    1.在设计视图里面的代码 <form id="form1" runat="server"> <div> <h1>两个表< ...

  5. ASP.NET控件属性大全

    ASP.NET控件属性大全 DataGridView 控件DataGridView 控件提供用来显示数据的可自定义表.使用 DataGridView 类,可以自定义单元格.行.列和边框. 注意Data ...

  6. TreeView控件使用

    treeView1.SelectedNode = treeView1.Nodes[0];  //选中当前treeview控件的根节点为当前节点添加子节点:  TreeNode tmp; tmp = n ...

  7. 基于Treeview控件遍历本地磁盘

    一.前言 Treeview控件常用于遍历本地文件信息,通常与Datagridview与ImageList搭配.ImageList控件用于提供小图片给TreeView控件,DatagridView通常显 ...

  8. asp.net <asp:Content>控件

    <asp:Content ID="Content2" ContentPlaceHolderID="CPH_MainContent" runat=" ...

  9. Win32中TreeView控件的使用方法,类似于资源管理器中文件树形显示方式

    首先是头文件,内容如下: #include <tchar.h> #include "..\CommonFiles\CmnHdr.h" #include <Wind ...

随机推荐

  1. DataRow映射实体

    public static T ConvertToModel<T>(DataRow dr) where T : new() { T t = new T(); Type modelType ...

  2. paper122:多尺度与多分辨率的关系

    本文转自:http://blog.csdn.net/chgm_456d/article/details/8100513 我一直对于 多尺度与多分辨率没有一个准确的概念.后来看了一些文章,其中xiaow ...

  3. iOS传值之block传值(一)

    ios4.0系统已开始支持block,在编程过程中,blocks被Obj-C看成是对象,它封装了一段代码,这段代码可以在任何时候执行.Blocks可以作为函数参数或者函数的返回值,而其本身又可以带输入 ...

  4. 【转】lower_case_table_names=1 让MySQL不区分大小写

    lower_case_table_names=1 让MySQL不区分大小写! 此前有款网络游戏的数据库是采用MySQL.操作系统是CentOS.部分服务器的操作系统又是Windows. 出现了一个小毛 ...

  5. 在ASP.NET MVC5应用程序中快速接入QQ和新浪微博OAuth

    http://www.cnblogs.com/xiaoyaojian/p/4611660.html

  6. windows registry => control pannel

    User Variables HKEY_CURRENT_USER\Environment System Variables HKEY_LOCAL_MACHINE\SYSTEM\CurrentContr ...

  7. winform、C# 自动更新

    用IIS或者是Tomcat搭建一个Web服务器,因为没有涉及到动态页面,所以用什么服务器无所谓,网上有太多资料,这里不再赘述. 废话不多说,直接上代码. HttpHelper, 访问网页,下载文件等 ...

  8. Windows Azure Virtual Machine 之用程序控制Azure VM

    我们在很多时候可能会需要用程序来控制VM的创建,删除工作. 而在这些工作之中,用程序创建一个VM将会是一个非常复杂的过程,因为他涉及到很多步骤. 具体步骤如下 1 创建一个Hosted cloud s ...

  9. centos5安装salt-master

    本篇文档主要解决2个问题: 1. centos5通过yum安装的master版本肯定低于centos6安装的minion,所以必须升级salt-master 2. zeromq版本太低会报这个错 20 ...

  10. Java数据结构之表的增删对比---ArrayList与LinkedList之一

    一.Java_Collections表的实现 与c不同Java已经实现并封装了现成的表数据结构,顺序表以及链表. 1.ArrayList是基于数组的实现,因此具有的特点是:1.有索引值方便查找,对于g ...