scrollbar in treeview

  • Thread starter Thread starter bill
  • Start date Start date
B

bill

I am using VS 2005 (VB.NET) web forms.

I have a webforms Master page, using a header and left side template.

I have a content form with a ASP 2 treeview control in the content
placeholder on the left side cell.

How can I have a scrollbar when the treeview expands beyond the bottom of
the page? I don't want the scrollbar for the entire page, just the treeview
content placeholder.

I am currently using a panel with scrollbars set to auto, which works
allright except that I have to set the Height of the panel in pixels, which
does not adjust to the client resolution.
 
you have the correct solution. just add client script to resize the panel on
the window.resize event.

-- bruce (sqlwork.com)
 
Back
Top