Click here to Skip to main content
Licence CPOL
First Posted 11 Jul 2006
Views 75,036
Bookmarked 56 times

Outlook Style Menu With Collapse Side Menu

By | 15 Aug 2006 | Article
Very good outlook style menu with collapse side menu

Sample Image - collapse_menu.png

Introduction

I have read an "BalaNet" article at  http://www.codeproject.com/useritems/XPMenu.asp  which explains the dropdown xp style menu  that the great work

Just I would like to add new features,

1-Collapse side menu.

2-Change the xp style menu in to Outlook style bar.(Using CSS File "SlideMenu.css")

I think that most developers suffer from the problem of the design of the menu,needs thier application GUI like Outlook or XP Style,

Therefore I think that this menu provide solution .


Source code contain to

    * SlideMenu.css file
    * menu.js file


Import Css file in your page

<LINK href="SlideMenu/images/SlideMenu.css" type="text/css" rel="stylesheet">


Collaps side menu feature permit to hide side menu from page as a client script

Hide menu function:

<script type="text/javascript">

function lefthide() {

var fr = parent.document.getElementById("sbCont");

if(fr.style.display==""){

fr.style.display="none";

change('outlookside', 'outlookBarExpand')

}

else{

fr.style.display="";

change('outlookside', 'outlookBarcollapse')

}

}

function change(id, newClass) {

identity=document.getElementById(id);

identity.className=newClass;

}

</script>



I hope that I have succeeded in making this article and i wish to be useful

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Youssef Saad

Software Developer (Senior)
NTRA
Egypt Egypt

Member

I am a Software Engineer working for NTRA , a National Telecom Regulatory Authority, Smart village - Giza -Egypt

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionlittle bug Pinmemberkroooz21:16 17 Oct '11  
GeneralUsing this control in Master Page PinmemberMatthew Taylor8:11 1 Mar '10  
GeneralI tried using it Pinmemberisraa1721:22 11 Nov '09  
Generalthanks very much Pinmembermaqiuyu17:12 26 Sep '09  
GeneralMy vote of 1 PinmemberKKV100021:39 6 Jul '09  
GeneralGood...More Idea PinmemberHany Shebl21:24 24 Nov '08  
QuestionNice Job But some problem with mozilla PinmemberSPA_Admin3:17 25 May '07  
GeneralNice job PinmemberPrajak.Kwangswart15:05 27 Feb '07  
GeneralTab Style Pinmembervp20005:30 16 Aug '06  
GeneralNice Job -I have something similar Pinmemberrodrigo diniz2:04 16 Aug '06  
Nice job . I made a XpMenu like also and I transformed it into an user control .You can see it here
http://www.rodrigodiniz.qsh.eu/
Just go the samples page and look for it.
Feel free to look at the other samples.
 
Rodrigo Diniz

Microsoft Certifed Professional
http://www.rodrigodiniz.qsh.eu/

AnswerRe: Nice Job -I have something similar PinmemberYoussef Saad22:06 22 Aug '06  
GeneralGood Job Pinmembercpopham8:12 10 Aug '06  
AnswerRe: Good Job PinmemberYoussef Saad3:16 15 Aug '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 15 Aug 2006
Article Copyright 2006 by Youssef Saad
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid