Is there a way to scroll the selected node of an ASP.Net TreeView into view after a postback?
In my parrticular scenario the control is repopulated after each postback.
Thanks!
|
|
|
|
|
|
|
I figured it out. The TreeView control creates a javascript object on the client. It is named whatever you called the treeview with a '_Data' appended. The object lets you get a reference to the selected node. The code below uses the ASP.Net Ajax extensions. Just remember to change the TreeView name to whatever you called yours.
|
||
|
|
|
|
You could also use the following code:
Credit goes to Paul Kimmel |
||
|
|
|
|
It is not working for me. I am using the treeview under update panel (AJAX). Kangkan |
|||
|