开发者

How to change the checked property of a TreeViewNode In TreeView ,Its source is XMldataSource?

开发者 https://www.devze.com 2022-12-19 04:29 出处:网络
I have Connected an XmlDtaSource to a TreeView with checkboxes.I want to populate the user permissions in that.

I have Connected an XmlDtaSource to a TreeView with checkboxes.I want to populate the user permissions in that.

 <asp:TreeView ID="TreeView1" runat="server" ExpandDepth="2" 
            ShowCheckBoxes="All" ShowLines="True">
            <DataBindings>
            <asp:TreeNodeBinding ValueField="Value" DataMember="menuNode" TextField="title" /> 

            </DataBindings> 

        </asp:TreeView>

I want to change the value of the checkbox(checked or not) according to the one field in the xml. How to d开发者_如何学运维o this ? Plz


Do something like this

protected void Page_Load(object sender, EventArgs e)  
{  
    foreach (TreeNode node in TreeView1.Nodes)  
    {  
        SetNode(node);  
    }  
}  

void SetNode(TreeNode node)  
{  
    if (node.Text == "the condition for checked")  // Use node.DataItem to get your Id of bounded data and check your flag there in the actual data source using this Id. Probably you would like to have a function that returns bool.
    {  
        node.Checked = false;  
    }  
    if (node.ChildNodes.Count > 0)  
    {  
        foreach (TreeNode childnode in node.ChildNodes)  
        {  
            SetNode(childnode);  
        }  
    }  
}  

I've not provided exact answer by hope it give you some clue.

0

精彩评论

暂无评论...
验证码 换一张
取 消