在asp.net TreeView TreeNodePopulate事件之后运行javascript函数

时间:2017-07-06 14:51:05

标签: javascript asp.net treeview registerstartupscript

我有一个带PopulateOnDemand选项的TreeView控件。每次触发TreeNodePopulate事件后,我都需要调用一个javascript函数。 我试过这个

代码背后的代码:

protected void tvMyTree_PopulateNode(object sender, TreeNodeEventArgs e)
{
     TreeManager.PopulateNodes(e.Node.Value);              
    ClientScript.RegisterStartupScript(this.GetType(),"ScriptInitButtons", "InitButtons();", true);
}

JS:

    <script type="text/javascript"> 
    function InitButtons() {
         $(".folder").button();
         $(".folder").click(function () {
              createFolderDialog.data('parentID', $(this).attr('id')).dialog('open');
         });
         $(".leaf").button();
   }
    </script>

但RegisterStartupScript不起作用。函数调用未添加到页面中。

1 个答案:

答案 0 :(得分:0)

我找到了解决方案here。但是,如果没有微小的修改,它就无法使用我的ASP.NET版本。

此方法的作用是修改从服务器返回树数据后调用的函数。该函数称为TreeView_ProcessNodeData,可在WebForms.js中找到。我必须检查此文件以查看其参数的名称。在这种情况下,签名是TreeView_ProcessNodeData(n,t)。了解确切的方法签名非常重要。

现在我们知道了正确的签名,我们创建了一个在文档就绪时运行的函数。这将查找TreeView_ProcessNodeData函数作为字符串并提取方法体。然后它会在调用InitButtons函数的方法体的末尾附加一行。最后,它将TreeView_ProcessNodeData重新分配为一个带有参数'n'和't'的新函数。

从现在开始,当树视图调用TreeView_ProcessNodeData时,它将调用这个新函数,它的行为与原始函数类似,只不过它最后调用了InitButtons。

<script type="text/javascript">

    $(document).ready(updateTreeViewProcessNodeData);

    function updateTreeViewProcessNodeData() {
        // convert the TreeView_ProcessNodeData to a string
        var fnBody = TreeView_ProcessNodeData.toString();
        // remove everything before the first opening brace
        fnBody = fnBody.substring(fnBody.indexOf("{") + 1);
        // remove everything up to the last closing brace
        fnBody = fnBody.substring(0, fnBody.length - 1);
        // fnBody now contains the body of the method
        // add a new line at the end of the method to call InitButtons
        fnBody += "\nInitButtons();";
        // create a new function object from the text
        // 'n' and 't' are the correct names of the function arguments expected by the method body
        TreeView_ProcessNodeData = new Function("n", "t", fnBody);
    }

</script>