iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
Is it possible to obtain the nodes, checkednodes, etc.... using vb.net or C# ?
Or is it only possible using client access?
The snippet code below shows how to obtain checked nodes of WebTreeView in code behind (C#).
protected void Button1_Click(object sender, EventArgs e){ TextBox1.Text = "Checked nodes are : \n"; for (int i = 0; i < WebTreeView1.CheckedNodes.Count; i++) { WebTreeViewNode checkedNodes = WebTreeView1.CheckedNodes[i] as WebTreeViewNode; if (checkedNodes != null) TextBox1.Text += checkedNodes.Text + " ; \n"; } }
To obtain WebTreeView nodes, please try to use the Nodes property of WebTreeView. It is a collection of WebTreeViewNodeBinding. For example:
WebTreeViewNodeCollection nodes = WebTreeView1.Nodes;
Hope this help.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname