CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > general_asp.net.master_pages_themes_and_navigation_controls Tags:
Item Type: NewsGroup Date Entered: 1/27/2008 3:50:09 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 17 Views: 33 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
18 Items, 1 Pages 1 |< << Go >> >|
mlov83
Asp.Net User
SiteMap Datasource MENU1/27/2008 3:50:09 PM

0/0

Hello everyone Problably a very easy questions and after reading the about 100 post im getting a little frustuated. Therefore I decided to post up. I have two questions. I'm using a sitemap with a drop down menu. when i launch the website when i hover over the menu item I would like the sub menu to over lay the table. This soounds confusing but basically right now when i hover over the menu the sub menus are behind the table so you only see about 3 letters.

Does anyone know what the simple solution to this is. Also How do I customize the sub menu Items?

Thank you everyone in advance.

darsho
Asp.Net User
Re: SiteMap Datasource MENU1/27/2008 4:20:14 PM

0/0

make sure that your menu z-index is larger than table z-index

if you can't find the menu z-index you can set the table z-index to -1 and it will work


Mark As Answer If my reply helped you.
mlov83
Asp.Net User
Re: SiteMap Datasource MENU1/27/2008 6:58:49 PM

0/0

Thank you that was brilliant. How about do you know how i can format how the sub-menus look? thanks for all the help! 

darsho
Asp.Net User
Re: SiteMap Datasource MENU1/27/2008 7:58:08 PM

0/0

what do you mean by sub-menus? do you mean the dynamic part that appear?


Mark As Answer If my reply helped you.
mlov83
Asp.Net User
Re: SiteMap Datasource MENU1/27/2008 9:37:29 PM

0/0

Sorry for my ignorance yes I meant to say the Dynamic part that appears when you hover your mouse over it.  Im kind of trying to imatte the menus on the left  of this website.   i really appreciate the help! Yes

http://finance.columbia.edu/

darsho
Asp.Net User
Re: SiteMap Datasource MENU1/28/2008 6:21:35 AM

0/0

for the submenus that dynamicaly appears you can use the following property :

DynamicHoverStyle >> when mouse hover (works only client script is enabled)

DynamicMenuItemStyle >> style of menu items that are in the dynamic part( submenu)

DynamicMenuStyle >> style of the menu itself not the items

DynamicSelectedStyle >> style for the selected item id in the dynamic part


Mark As Answer If my reply helped you.
mlov83
Asp.Net User
Re: SiteMap Datasource MENU1/28/2008 2:16:39 PM

0/0

Absolutely Awesome! thank you . 1 last question if you wouldn't mind. Can I ask you... When i have a site map and I go over to the source code, If I put  a link on the URL i get an URI error?... Is there a way around that. I have been looking on the web for a solution but so far  i have gotten nothing. However if i make the URL one of my pages withing my project it does work...

Thanks for all the help so far.

AmrElsehemy
Asp.Net User
Re: SiteMap Datasource MENU1/28/2008 2:48:37 PM

0/0

In your sitemap.web file make sure that the url attribute is configured right

like this for in project files

      <siteMapNode url="~/Pages/Sales/Default.aspx" title="Sales" />

 and for outer urls
 

      <siteMapNode url="http://www.google.com" title="Google" />

 

for more information on sitemap and navigation see this excellent tutorial by scott mitchel

http://aspnet.4guysfromrolla.com/articles/111605-1.aspx

 

Hope this helps.
 


Don't forget to click "Mark as Answer" on the post that helped you.
Regards,
Amr Elsehemy
blog www.amrelsehemy.net
darsho
Asp.Net User
Re: SiteMap Datasource MENU1/28/2008 7:49:03 PM

0/0

i think amrelsehemy answered you the right answer

i hope you get help of all your questions


Mark As Answer If my reply helped you.
AmrElsehemy
Asp.Net User
Re: SiteMap Datasource MENU1/29/2008 8:45:39 AM

0/0

Did my post help in anything, did you solve your last issue? 


Don't forget to click "Mark as Answer" on the post that helped you.
Regards,
Amr Elsehemy
blog www.amrelsehemy.net
mlov83
Asp.Net User
Re: SiteMap Datasource MENU1/29/2008 11:06:41 AM

0/0

kind of helped Thank you for taking the time to answers all this rookie questions. I was able to do away with the URI error with the site map. I dont understant how though. I mean I'm not doing anything differently. I look at the link you gave me and they had some fairly good tips there but most it was stuff i already have read. I just dont understand why sometimes using the sitemap i get an URI error? and sometimes I dont . Is very frustuating.

 

Thank you  though you have been a great help

mlov83
Asp.Net User
Re: SiteMap Datasource MENU1/29/2008 11:25:09 AM

0/0

nevermind it dosent work at all. now im getting the URI message again this only happens in the design window. The interesting thing is that when i look at the website on the web the menu shows but on my design window i have an error...  Has anyone else ever had this problem?

AmrElsehemy
Asp.Net User
Re: SiteMap Datasource MENU1/29/2008 11:39:27 AM

0/0

The design time enivornment does not allow outer http requests, it will only appear in runtime


Don't forget to click "Mark as Answer" on the post that helped you.
Regards,
Amr Elsehemy
blog www.amrelsehemy.net
mlov83
Asp.Net User
Re: SiteMap Datasource MENU1/29/2008 2:55:58 PM

0/0

NOW ! that makes perfect since. thank you for the info. Is been a tough one with just trying to get this menu situation figuere out. Can i ask you when you put menus together do you use the the sitemap or do you use your own javascript menus?  I notices that there is no static property for the actual menu when you hover over it to change colors. The dynamic part does change colors but not the static part.

AmrElsehemy
Asp.Net User
Re: SiteMap Datasource MENU1/29/2008 3:19:04 PM

0/0

The built in menu control works perfectly with the sitemap, when you change the sitemap .web file you will not need to repair your javascript menus, you will need to save the new sitemap.web it works good.

I found that darshoo up there told you how to set colors for the dynamic menu part

darsho:

for the submenus that dynamicaly appears you can use the following property :

DynamicHoverStyle >> when mouse hover (works only client script is enabled)

DynamicMenuItemStyle >> style of menu items that are in the dynamic part( submenu)

DynamicMenuStyle >> style of the menu itself not the items

DynamicSelectedStyle >> style for the selected item id in the dynamic part

 

You will have the Same properties available but with Static instead of Dynamic for the already visible part.


Don't forget to click "Mark as Answer" on the post that helped you.
Regards,
Amr Elsehemy
blog www.amrelsehemy.net
darsho
Asp.Net User
Re: SiteMap Datasource MENU1/29/2008 3:22:15 PM

0/0

StaticHoverStyle

StaticMenuItemStyle

StaticMenuStyle

StaticSelectedStyle

 

the same for the dynamic but this time it is called static :)


Mark As Answer If my reply helped you.
AmrElsehemy
Asp.Net User
Re: SiteMap Datasource MENU2/4/2008 8:11:55 AM

0/0

Hello,

Please Mark ALL my posts that helped you IF ANY, so I will be credited for them.

Thank you. 


Don't forget to click "Mark as Answer" on the post that helped you.
Regards,
Amr Elsehemy
blog www.amrelsehemy.net
mlov83
Asp.Net User
Re: SiteMap Datasource MENU2/4/2008 8:39:17 PM

0/0

I did and thank you again for all your help.

18 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Professional ASP.NET 2.0 Design: CSS, Themes, and Master Pages Authors: Jacob J. Sanford, Pages: 474, Published: 2007
Professional ASP.NET 3.5: In C# and VB Authors: Bill Evjen, Scott Hanselman, Devin Rader, Pages: 1673, Published: 2008
Professional ASP.NET 2.0 Databases Authors: Thiru Thangarathinam, Pages: 504, Published: 2007
Beginning ASP.NET 2.0 Authors: Chris Hart, John Kauffman, Chris Ullman, David Sussman, Pages: 759, Published: 2005
Wrox's ASP.NET 2.0 Visual Web Developer 2005 Express Edition Starter Kit: visual web developer 2005 express edition starter kit Authors: David Sussman, Alex Homer, Pages: 312, Published: 2005
Professional ASP.NET 2.0 XML Authors: Thiru Thangarathinam, Pages: 566, Published: 2005
Beginning ASP.NET 3.5: In C# and VB Authors: Imar Spaanjaars, Pages: 734, Published: 2008
Beginning ASP.NET 3.5 in VB 9.0: From Novice to Professional Authors: Matthew MacDonald, Pages: 1149, Published: 2007
Beginning ASP.NET 3.5 in C# 2008: From Novice to Professional Authors: Matthew MacDonald, Pages: 954, Published: 2007
Beginning ASP.NET 2.0 in VB 2005: From Novice to Professional Authors: Matthew MacDonald, Pages: 1063, Published: 2006

Web:
Dynamic Menu using SiteMapDataSource : menu, sitemapdatasource ... Is there a way to add Menu Items to a Menu when you have firstly used a SiteMapDataSource that reads web.sitemap? I have created one using ...
How to: Filter the Nodes Retrieved by SiteMapDataSource Web Server ... SiteMapDataSource control retrieves site-map data from a site-map provider, ...

Using a Horizontal Menu

Dotnet-Friends.com | Website Navigation or Menu with ... Jul 5, 2007 ... You want to add a Menu or a Navigation bar to your website. In both cases you need SiteMapDataSource. So how to create a SiteMapDataSource ? ...
Populating the menu using SiteMapDataSource using "VB" - Xtreme ... Is anyone know how to populating the menu by user role using SiteMapDataSource in vb code?I found a lot of code use the c#. ...
hide root menu item (no sitemapdatasource used!) my 2.0 menu control has this root node which I want to hide normally the showrootnode property is set to false on the sitemapdatasource ...
SiteMapDataSource When data-bound to a SiteMapDataSource control, Telerik RadMenu automatically creates menu item hierarchy and maps the title, url, and description fields of ...
adding items to menu bound to sitemapdatasource - ASP.NET Forums I use the SqlSiteMapProvider to pull my site map out the database. The SiteMapDataSource is then bound to a main navigation menu and a footer navigation ...
Commonality - Manipulating the SiteMapDataSource for ASP.NET 2.0 Menus May 16, 2006 ... Two of those are the Menu and the SiteMapDataSource controls. ... Having the SiteMapDataSource control driving the menu ignore the root of ...
use XMLDataSource or SiteMapDataSource in Menu - ASP.NET Forums If you are creating a menu then SiteMapDataSource is easier to use as it has a pre-defined XML structure for menus. ...
Binding a Menu Control to a SiteMapDataSource Binding a Menu Control to a SiteMapDataSource. This demo requires ASP. ... This example shows a Menu bound to a SiteMapDataSource control. ...




Search This Site:










iframe with localhost path?

how can i make page consist of tow parts

converting asp.net 2.0 into asp.net 1.1 using vs 2005

declaring session variables in the global.asax file

<computer>\\administrator account always logged in

formatting the treeview

how to configure web.config for database

email pdf attachment

can i have 2 solpart menus in one page?

need skinning help

many different issues migrating web applications from 2003 to 2005

email blast tools

how to validate a textbox for input only one character y, n or c only in asp.net 2.0?

page can be viewed without logging in

custom control property

how to pass selected value of a dropdown server control to javascript function?

knowing when a uses signs out / closes browser window

module developer hell

error after uploading

different words, same meaning?

typical login

display image from sql database to web app

error when including web usercontrol

problem with discussions module.

php to asp

label control

web.sitemap help

tree view control for file folders

problem with "move" option in module

secure a download file location

 
All Times Are GMT