0

First off, I'm sorry if the title doesn't explain this very well.

I'm looking for an asp.net control that works similarly to the Visual Studio toolbox's auto-hide. In other words, when not needed, it can be "unpinned" and will slide off to the side of the screen. When needed, it can be opened and pinned to stay in place. I'd rather not do it myself using javascript if a (free) control already exists. Does anyone know of such a control? If not, has anyone implemented this type of functionality using a js library with good results? Any pointers?

Thanks in advance.

Matt M
  • 3,699
  • 5
  • 48
  • 76

2 Answers2

1

Edit:

The collapsiblePanel might work, I don't have any experience with it, but it's open source software from CodePlex.

I don't know of any free ASP.Net controls. But if you want to get it working using javascript you can do so with jQuery. This post on StackOverflow shows how to get the autohide feature working

Community
  • 1
  • 1
Pieter
  • 2,161
  • 1
  • 13
  • 5
1

We use Telerik's RadSplitter. It is exactly what you are looking for.

Unfortunately, it is not free. But it worths checking out since their licensing is very flexible.

Telerik RadSplitter

Win
  • 61,100
  • 13
  • 102
  • 181
  • Damn. That is exactly what I'm looking for, but since it's not free, I can't use it. Thanks. – Matt M Nov 08 '10 at 21:31