Rank: Newbie Groups: Member
Joined: 6/13/2007 Posts: 1
|
When I set SingleExpand="False" to make the submenus appear open, clicking on the main menu item (if it has a submenu) delivers the incorrect page.
Is it possible to make the main item nonclickable even though there are other items at this level in the menu that need to be active?
Apologies if I'm using the wrong terminology -- I didn't build this menu and am working strictly from the HTML code view.
Thanks, Lisa
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
hi, Lisa Yes, the easiest way to do that is, just go to TabStrip Builder, set the Disabled = True for whichever menu item you want to nonclickable. Or, you can do it in code like this:
Code: C#
this.TabStrip1.Items[1].Disabled = true;
Thanks.
|