treeview

Posted: 07-22-2003, 09:30 PM
I use a form with a control treeview ( MS 5.02 ) to open and select specific
records in various form.

in case of the data update, cancellation, ecc., how it is possible perform a
kind of requery on the treeview, and then return in the patched location?

Thank you


Reply With Quote

Responses to "treeview"

Diva
Guest
Posts: n/a
 
Treeview
Posted: 07-29-2003, 11:19 AM
Hi,

I am developing an ASP.NET application and I need to
display data in the form of a tree view. My treeview
should allow me to display radio button lists as the
nodes. Is there any simple way of doing this in ASP.NET?

Thanks.
Reply With Quote
LonGreat
Guest
Posts: n/a
 
Re: Treeview
Posted: 07-30-2003, 06:18 PM
Go http://longreat.com , download and see the demo.
"Diva" <moonlight_diva_17uk@yahoo.com>
???????:07d101c355ba$f11fd8a0$a601280a@phx.gbl...
> Hi,
>
> I am developing an ASP.NET application and I need to
> display data in the form of a tree view. My treeview
> should allow me to display radio button lists as the
> nodes. Is there any simple way of doing this in ASP.NET?
>
> Thanks.

Reply With Quote
vij010
Guest
Posts: n/a
 
TreeView
Posted: 12-08-2003, 09:48 AM
Hi...
I got CTreeview,....they have a help system but i can't undertstand how to play a movie from a click on the TreeView...this is important for me to continue on the project.. I have gone to the help found on CTreeView's home page...but i can't seem to follow it... can anyone guide me with an example ?...

TIA
Vj

Vj
Reply With Quote
ally
Guest
Posts: n/a
 
treeview
Posted: 01-08-2004, 01:52 PM
I have a treeview in my ASP.NET c# application.when someone selects a node
on the treeview How do I set the node name
myNodeName = TreeView1.Nodes(TreeView1.SelectedNodeIndex).Text
The above code only gave me the value of the parent Node
Any and all help would be greatly appreciated!!!!


Reply With Quote
Marshal Antony
Guest
Posts: n/a
 
Re: treeview
Posted: 01-16-2004, 05:20 AM

Hi,


Microsoft.Web.UI.WebControls.TreeNode tn=new
Microsoft.Web.UI.WebControls.TreeNode();

tn=Treeview1.GetNodeFromIndex(Treeview1.SelectedNo deIndex);

myNodeName=tn.Text

Hope this helps.

Regards

Marshal Antony

dotnetmarshal@yahoo.com

http://dotnetmarshal.com



"ally" <skiyanc@yahoo.com> wrote in message
news:unWB96e1DHA.556@TK2MSFTNGP11.phx.gbl...
> I have a treeview in my ASP.NET c# application.when someone selects a
node
> on the treeview How do I set the node name
> myNodeName = TreeView1.Nodes(TreeView1.SelectedNodeIndex).Text
> The above code only gave me the value of the parent Node
> Any and all help would be greatly appreciated!!!!
>
>

Reply With Quote
 
LinkBack Thread Tools Search this Thread Display Modes
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Fill Tabstrip Control dynamically with multiple treeview controls Brian Watkins ASP.NET Building Controls 0 11-20-2003 08:09 PM
TreeView PostBack Ersin INAN ASP Components 1 07-09-2003 07:03 PM
Accessing TreeView Control properties on the client side Soumitra Bajpai ASP.NET General 1 06-26-2003 12:29 PM