Wizard SideBar

  • Thread starter Thread starter Steven Blair
  • Start date Start date
S

Steven Blair

I am using a Wizard component in ASP.NET and would like the SideBar to
be visible,

but I don't want the user to be able to click the links.

However I still need the current step to
be highlighted.

Is this possible?
 
Did you realize the Wizard control is nothing more than a wired up MultiView
and View controls? You could build just about whatever you need for a UI
using the MultiView control.

To answer your question though is thus possible but IMO would be more work
and not as rich in the UI than using MultiView.

<%= Clinton Gallagher
 
The MultiView may well have been the better choice for my particular
app, but unforutnately too far down the line to change.
For anyone intersted, I found a way of stoppping the user clicking the
Sidebar links...

Add a layer across the SideBar and add a transparent image to the layer.
It's not pretty, but works.
 
Back
Top