Click here to Skip to main content
Licence CPOL
First Posted 11 Jul 2006
Views 72,938
Downloads 1,551
Bookmarked 56 times

Outlook Style Menu With Collapse Side Menu

By Youssef Saad | 15 Aug 2006 | Unedited contribution
Very good outlook style menu with collapse side menu
9 votes, 45.0%
1
3 votes, 15.0%
2

3

4
8 votes, 40.0%
5
2.28/5 - 20 votes
μ 2.28, σa 3.35 [?]

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 Pinmemberkroooz22:16 17 Oct '11  
GeneralUsing this control in Master Page PinmemberMatthew Taylor9:11 1 Mar '10  
GeneralI tried using it Pinmemberisraa1722:22 11 Nov '09  
Generalthanks very much Pinmembermaqiuyu18:12 26 Sep '09  
GeneralMy vote of 1 PinmemberKKV100022:39 6 Jul '09  
GeneralGood...More Idea PinmemberHany Shebl22:24 24 Nov '08  
QuestionNice Job But some problem with mozilla PinmemberSPA_Admin4:17 25 May '07  
GeneralNice job PinmemberPrajak.Kwangswart16:05 27 Feb '07  
GeneralTab Style Pinmembervp20006:30 16 Aug '06  
GeneralNice Job -I have something similar Pinmemberrodrigo diniz3:04 16 Aug '06  
AnswerRe: Nice Job -I have something similar PinmemberYoussef Saad23:06 22 Aug '06  
GeneralGood Job Pinmembercpopham9:12 10 Aug '06  
AnswerRe: Good Job PinmemberYoussef Saad4: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
Web02 | 2.5.120209.1 | Last Updated 15 Aug 2006
Article Copyright 2006 by Youssef Saad
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid