Monday, March 26, 2012

Maintain Tree View State

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,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
"Andrew Robinson" <nemoby@.nospam.nospam> wrote in message
news:OFTJhruFGHA.740@.TK2MSFTNGP12.phx.gbl...
>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,
Justin,

Thanks. Basically number 2 that I listed.

"S. Justin Gengo [MCP]" <justin@.[no_spam_please]aboutfortunate.com> wrote in
message news:OD9UmWvFGHA.2472@.TK2MSFTNGP10.phx.gbl...
> 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
> "Andrew Robinson" <nemoby@.nospam.nospam> wrote in message
> news:OFTJhruFGHA.740@.TK2MSFTNGP12.phx.gbl...
>>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,
>>
>>
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" <nemoby@.nospam.nospam> wrote in message
news:u4FulwvFGHA.1180@.TK2MSFTNGP09.phx.gbl...
> Justin,
> Thanks. Basically number 2 that I listed.
>
> "S. Justin Gengo [MCP]" <justin@.[no_spam_please]aboutfortunate.com> wrote
> in message news:OD9UmWvFGHA.2472@.TK2MSFTNGP10.phx.gbl...
>> 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
>> "Andrew Robinson" <nemoby@.nospam.nospam> wrote in message
>> news:OFTJhruFGHA.740@.TK2MSFTNGP12.phx.gbl...
>>>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,
>>>
>>>
>>
>>
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 [MCP]" <justin@.[no_spam_please]aboutfortunate.com> wrote in
message news:%231R%23A9vFGHA.376@.TK2MSFTNGP12.phx.gbl...
> 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" <nemoby@.nospam.nospam> wrote in message
> news:u4FulwvFGHA.1180@.TK2MSFTNGP09.phx.gbl...
>> Justin,
>>
>> Thanks. Basically number 2 that I listed.
>>
>>
>> "S. Justin Gengo [MCP]" <justin@.[no_spam_please]aboutfortunate.com> wrote
>> in message news:OD9UmWvFGHA.2472@.TK2MSFTNGP10.phx.gbl...
>>> 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
>>> "Andrew Robinson" <nemoby@.nospam.nospam> wrote in message
>>> news:OFTJhruFGHA.740@.TK2MSFTNGP12.phx.gbl...
>>>>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,
>>>>
>>>>
>>>
>>>
>>
>>
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" <nemoby@.nospam.nospam> wrote in message
news:%23dGmiq5FGHA.2676@.TK2MSFTNGP10.phx.gbl...
> 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 [MCP]" <justin@.[no_spam_please]aboutfortunate.com> wrote
> in message news:%231R%23A9vFGHA.376@.TK2MSFTNGP12.phx.gbl...
>> 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" <nemoby@.nospam.nospam> wrote in message
>> news:u4FulwvFGHA.1180@.TK2MSFTNGP09.phx.gbl...
>>> Justin,
>>>
>>> Thanks. Basically number 2 that I listed.
>>>
>>>
>>> "S. Justin Gengo [MCP]" <justin@.[no_spam_please]aboutfortunate.com>
>>> wrote in message news:OD9UmWvFGHA.2472@.TK2MSFTNGP10.phx.gbl...
>>>> 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
>>>> "Andrew Robinson" <nemoby@.nospam.nospam> wrote in message
>>>> news:OFTJhruFGHA.740@.TK2MSFTNGP12.phx.gbl...
>>>>>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,
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
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/li...ntrols.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" <nemoby@.nospam.nospam>
| References: <OFTJhruFGHA.740@.TK2MSFTNGP12.phx.gbl>
<OD9UmWvFGHA.2472@.TK2MSFTNGP10.phx.gbl>
<u4FulwvFGHA.1180@.TK2MSFTNGP09.phx.gbl>
<#1R#A9vFGHA.376@.TK2MSFTNGP12.phx.gbl>
| 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: <#dGmiq5FGHA.2676@.TK2MSFTNGP10.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: 216.57.203.121
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.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
|
|
|
| "S. Justin Gengo [MCP]" <justin@.[no_spam_please]aboutfortunate.com> wrote
in
| message news:%231R%23A9vFGHA.376@.TK2MSFTNGP12.phx.gbl...
| > 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" <nemoby@.nospam.nospam> wrote in message
| > news:u4FulwvFGHA.1180@.TK2MSFTNGP09.phx.gbl...
| >> Justin,
| >>
| >> Thanks. Basically number 2 that I listed.
| >>
| >>
| >> "S. Justin Gengo [MCP]" <justin@.[no_spam_please]aboutfortunate.com>
wrote
| >> in message news:OD9UmWvFGHA.2472@.TK2MSFTNGP10.phx.gbl...
| >>> 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
| >>> "Andrew Robinson" <nemoby@.nospam.nospam> wrote in message
| >>> news:OFTJhruFGHA.740@.TK2MSFTNGP12.phx.gbl...
| >>>>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,
| >>>>
| >>>>
| >>>
| >>>
| >>
| >>
| >
| >
|
|
|
I find it hard to believe that Microsoft has not provided an easier way to do this! It renders the TreeView control virtually useless as a menu if one cannot maintain state across page loads. Are we certain there isn't an easier way to do this?

If not, could you post the code you are using?

Thanks!

0 comments:

Post a Comment