Maintain Tree View State

A

Andrew Robinson

I have a treeview control that I use as a menu & navigation control within a
master page. The nodes for this control are loaded from a database which
contains the text and url of each like and the hierarchy of the menu tree.
All pretty normal stuff.

Is there any simple method of maintaining the expanded / collapsed state of
each node as my application moves from page to page? Remember this is on a
master page used by numerous content pages.

I am looking for something obvious that I might be missing.

I do have two solutions that are coded and work but wondering if there is
something better?

1. Clone the entire control and put it in Session or Cache.
2. Build a Dictionary based on the path at each node and the state of each
node. Put the dictionary in Session or Cache.

Thanks,
 
S

S. Justin Gengo [MCP]

Andrew,

I would make a simple array of which node numbers are expanded and assume
all others are collapsed and store that list in viewstate (an arraylist
would work nicely). Then you can have the master page store fill out and
store to viewstate the arraylist and retrieve it each time the master page
loads the tree again.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
 
S

S. Justin Gengo [MCP]

Yep. :) But I wanted to make certain that you saw viewstate as an option. I
like to store some things client side when I can. As long as it isn't a
great deal of information it is still just as fast for the customer and it
keeps the server as lean as possible.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
 
A

Andrew Robinson

Justin,

I am back to my original solution on this one.

1. ViewState is not maintained between two different pages. You need to save
you state in either Session or the Server Cache. Remember that I am using
this within a Master Page that is used on multiple content pages.

2. Is there some type of Node ID or number that can be used as a key for
each node? I am currently recursively walking the node tree and just using
an index that is external to the nodes that I add to. I don't think that you
can use the Data or Value path because there is no guarantee that it will
generate a unique key.

Thanks,

-Andrew
 
S

S. Justin Gengo [MCP]

Andrew,

You can expose objects on the master page to the content pages. Just declare
them as Friend. But you'll certainly have an easier time using session
because you would then have to code a base content page and inherit it so
that the code to store the tree in viewstate doesn't have to be repeated on
each and every page.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
Andrew Robinson said:
Justin,

I am back to my original solution on this one.

1. ViewState is not maintained between two different pages. You need to
save you state in either Session or the Server Cache. Remember that I am
using this within a Master Page that is used on multiple content pages.

2. Is there some type of Node ID or number that can be used as a key for
each node? I am currently recursively walking the node tree and just using
an index that is external to the nodes that I add to. I don't think that
you can use the Data or Value path because there is no guarantee that it
will generate a unique key.

Thanks,

-Andrew



S. Justin Gengo said:
Yep. :) But I wanted to make certain that you saw viewstate as an option.
I like to store some things client side when I can. As long as it isn't a
great deal of information it is still just as fast for the customer and
it keeps the server as lean as possible.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
Andrew Robinson said:
Justin,

Thanks. Basically number 2 that I listed.


"S. Justin Gengo [MCP]" <justin@[no_spam_please]aboutfortunate.com>
wrote in message Andrew,

I would make a simple array of which node numbers are expanded and
assume all others are collapsed and store that list in viewstate (an
arraylist would work nicely). Then you can have the master page store
fill out and store to viewstate the arraylist and retrieve it each time
the master page loads the tree again.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
I have a treeview control that I use as a menu & navigation control
within a master page. The nodes for this control are loaded from a
database which contains the text and url of each like and the hierarchy
of the menu tree. All pretty normal stuff.

Is there any simple method of maintaining the expanded / collapsed
state of each node as my application moves from page to page? Remember
this is on a master page used by numerous content pages.

I am looking for something obvious that I might be missing.

I do have two solutions that are coded and work but wondering if there
is something better?

1. Clone the entire control and put it in Session or Cache.
2. Build a Dictionary based on the path at each node and the state of
each node. Put the dictionary in Session or Cache.

Thanks,
 
S

Steven Cheng[MSFT]

Hi Justin,

For your #2 question, I think you can consider idenitfy TreeView's Nodes
through NodePath, you can find that TreeView control itself has the
FindNode method which used a certain TreeNode path to find a TreeNode...
This can help you storing Node info in Session or other global wide
storage...

#TreeView.FindNode
http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.treeview.
findnode.aspx

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| From: "Andrew Robinson" <[email protected]>
| References: <[email protected]>
<[email protected]>
<[email protected]>
<#1R#[email protected]>
| Subject: Re: Maintain Tree View State
| Date: Thu, 12 Jan 2006 09:07:13 -0800
| Lines: 95
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| X-RFC2646: Format=Flowed; Response
| Message-ID: <#[email protected]>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: 216.57.203.121
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP10.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:370383
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Justin,
|
| I am back to my original solution on this one.
|
| 1. ViewState is not maintained between two different pages. You need to
save
| you state in either Session or the Server Cache. Remember that I am using
| this within a Master Page that is used on multiple content pages.
|
| 2. Is there some type of Node ID or number that can be used as a key for
| each node? I am currently recursively walking the node tree and just
using
| an index that is external to the nodes that I add to. I don't think that
you
| can use the Data or Value path because there is no guarantee that it will
| generate a unique key.
|
| Thanks,
|
| -Andrew
|
|
|
in
| message | > Yep. :) But I wanted to make certain that you saw viewstate as an
option.
| > I like to store some things client side when I can. As long as it isn't
a
| > great deal of information it is still just as fast for the customer and
it
| > keeps the server as lean as possible.
| >
| > --
| > Sincerely,
| >
| > S. Justin Gengo, MCP
| > Web Developer / Programmer
| >
| > www.aboutfortunate.com
| >
| > "Out of chaos comes order."
| > Nietzsche
| > | >> Justin,
| >>
| >> Thanks. Basically number 2 that I listed.
| >>
| >>
| >> "S. Justin Gengo [MCP]" <justin@[no_spam_please]aboutfortunate.com>
wrote
| >> in message | >>> Andrew,
| >>>
| >>> I would make a simple array of which node numbers are expanded and
| >>> assume all others are collapsed and store that list in viewstate (an
| >>> arraylist would work nicely). Then you can have the master page store
| >>> fill out and store to viewstate the arraylist and retrieve it each
time
| >>> the master page loads the tree again.
| >>>
| >>> --
| >>> Sincerely,
| >>>
| >>> S. Justin Gengo, MCP
| >>> Web Developer / Programmer
| >>>
| >>> www.aboutfortunate.com
| >>>
| >>> "Out of chaos comes order."
| >>> Nietzsche
| >>> | >>>>I have a treeview control that I use as a menu & navigation control
| >>>>within a master page. The nodes for this control are loaded from a
| >>>>database which contains the text and url of each like and the
hierarchy
| >>>>of the menu tree. All pretty normal stuff.
| >>>>
| >>>> Is there any simple method of maintaining the expanded / collapsed
| >>>> state of each node as my application moves from page to page?
Remember
| >>>> this is on a master page used by numerous content pages.
| >>>>
| >>>> I am looking for something obvious that I might be missing.
| >>>>
| >>>> I do have two solutions that are coded and work but wondering if
there
| >>>> is something better?
| >>>>
| >>>> 1. Clone the entire control and put it in Session or Cache.
| >>>> 2. Build a Dictionary based on the path at each node and the state
of
| >>>> each node. Put the dictionary in Session or Cache.
| >>>>
| >>>> Thanks,
| >>>>
| >>>>
| >>>
| >>>
| >>
| >>
| >
| >
|
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,527
Members
44,998
Latest member
MarissaEub

Latest Threads

Top