用于 ASP.NET TreeView 的 Jquery

标签 jquery asp.net c#-4.0 treeview

我正在使用 asp.net TreeView 控件。我想为.net TreeView 控件添加jquery样式。但我不能这样做。请帮我解决这个问题。我需要 jquery 来平滑展开和折叠...

这是我的设计代码。我在哪里可以引用asp.net控件中的jquery

 <asp:TreeView ID="MyTree" PathSeparator="|" ExpandDepth="1" runat="server" NodeIndent="15"
                    ShowLines="true">
                    <RootNodeStyle ImageUrl="~/images/folder-video.png" />
                    <ParentNodeStyle ImageUrl="~/images/root.png" />
                    <NodeStyle ImageUrl="~/images/node.png" />
                    <LeafNodeStyle ImageUrl="~/images/leaf_video.png" />
                    <SelectedNodeStyle BackColor="#B5B5B5"></SelectedNodeStyle>
                    <NodeStyle VerticalPadding="2" Font-Names="Tahoma" Font-Size="10pt" HorizontalPadding="2"
                        ForeColor="#000000"></NodeStyle>
                    <HoverNodeStyle Font-Underline="True" ForeColor="#6666AA"></HoverNodeStyle>
                    <Nodes>
                        <asp:TreeNode Text="Sunbusiness Solution" PopulateOnDemand="True" Value="Demos" />
                    </Nodes>
                </asp:TreeView> 

最佳答案

我使用带有复选框的 TreeView 。在复选框上单击节点展开。

function InitTreeViewClick(){    $('#" + treevew.ClientID + @" :input').each(function(){  $(this).unbind(); var   a=this.nextSibling; if(a.nodeName=='A')  $(this).bind('click',   function(){a.click();});});}
}

Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(InitTreeViewClick);

可以修改a.click(),例如:setTimeout(function(){a.click();},3000);

就我而言,这非常有效。

以及cs文件代码:

protected void Page_PreRender(object sender, EventArgs e)
    {
if (!this.Page.ClientScript.IsStartupScriptRegistered("treeview"))
        {
            string script = @"Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(InitTreeViewClick);

                          function InitTreeViewClick(){    $('#" + treevew.ClientID + @" :input').each(function(){ $(this).unbind(); var a=this.nextSibling; if(a.nodeName=='A')  $(this).bind('click',  function(){a.click();});});} ";
            ScriptManager.RegisterStartupScript(this.Page, Page.GetType(), "treeview", script, true);
        }
}

根据您的情况,您可以找到所有链接

$('#" + treevew.ClientID + @" ).find('a').each( function(){$(this).click(
// your logic 
);});

或者

 $('#" + treevew.ClientID + @" ).find('a').each(function(){$(this).click(function(){$(this).parentsUntil('table').parent('table').next().css('background','red').slideToggle("slow");});});

当您点击父节点时,此代码将慢慢折叠并展开包含子项的 div,此时子节点的背景将变为红色。

最终解决方案(我也在我的项目中应用了这个解决方案,因为它看起来不错)。 ASCX文件代码:

<asp:TreeView ID="treeview" runat="server" ForeColor="Black" CssClass="inputs" ExpandDepth="0" MaxDataBindDepth="2"
    EnableClientScript="true" ShowCheckBoxes="All" AutoGenerateDataBindings="false"  ShowLines="false" 
     ShowExpandCollapse="false">

</asp:TreeView>

和cs文件代码:

 if (!this.Page.ClientScript.IsStartupScriptRegistered("treeview")) { string script = @"function InitTreeView(){$('#" + treeview.ClientID + @"' ).find('a').each(function(){$(this).unbind().removeAttr('onclick').removeAttr('href').click(function(){$(this).parentsUntil('table‌​‌​').parent('table').next().slideToggle('slow');});});} Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(InitTreeView);"; ScriptManager.RegisterStartupScript(this.Page, Page.GetType(), "treeview", script, true); }

我从标签 anchor 中删除了带有 __DoPostBack 的 href 属性,因为我只需要保存复选框值。 非常感谢用户1804985提出的问题。 :)

关于用于 ASP.NET TreeView 的 Jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13526355/

相关文章:

c#-4.0 - GDI+ 一般错误

c# - ASP.NET 模块依赖注入(inject)

javascript - ASPX 形式的错误消息和验证数据

c#-4.0 - 使用C#在其中具有空格和特殊字符的Elastic Search-Search字符串

javascript - 具有各种不同图标问题的 JQuery 切换图标

asp.net - 我的 Web 应用程序中的 aspx 页面上未显示生成的 ASP 图表

C# SortedSet 元素相等

php - 为什么这个ajax表单不插入记录?

javascript - jQuery检查ID值是否有数字

javascript - 未捕获的类型错误 : Cannot read property 'trim' of undefined in Jquery