CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums

ASP.NET Web Hosting – 3 Months Free!



Zone: > NEWSGROUP > Asp.Net Forum > general_asp.net.master_pages_themes_and_navigation_controls Tags:
Item Type: NewsGroup Date Entered: 6/5/2007 2:52:48 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 7 Views: 27 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
8 Items, 1 Pages 1 |< << Go >> >|
Stevishere
Asp.Net User
Dynamic MenuControl in MasterPage pushing Content6/5/2007 2:52:48 PM

0/0

My Menu control is in a column on the left of my content placeholders column in my MasterPage.  My MenuControl has 1 static level and 2 dynamic levels.  Whenever I hover over the menus, they expand, and it puches the content over a few pixels, even though it overlays the content fine.  Everything functions correctly.  There is a very annoying jump to the right of the gridview in my content column.

Also, when I utilize any of the controls (Gridview Update, DetailsView Insert) in the Content area, I get a "ghosting" of the input fields just slightly skewed from the actual field.  Once I type in it, the "ghost" disappears.

Any ideas?

Input boxes skewed.


Steve Holzer
[email protected]
www.Em8s.net

Why don't computers do what I want them to do instead of....what I tell them to do!?!?!?

Amanda Wang - M
Asp.Net User
Re: Dynamic MenuControl in MasterPage pushing Content6/8/2007 9:01:53 AM

0/0

Hi,

I am not very clear about your problem, Would you please give more related code? that could help to understand your question.


Please remember to mark the replies as answers if they help and unmark them if they provide no help.


Yours sincerely,
Amanda Wang
Microsoft Online Community Support
Stevishere
Asp.Net User
Re: Dynamic MenuControl in MasterPage pushing Content6/8/2007 11:00:23 AM

0/0

Here is my menu code from my Master Page:

<%@ Master Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

</script>

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

<title>Brookside Homes HomEm8 System by Em8s, LLC</title>

<link rel="stylesheet" type="text/css" />

</head>

<body>

<form id="form1" runat="server">

<table border="0" cellpadding="0" cellspacing="0" style="z-index: 100; left: 0px;

width: 100%; position: absolute; top: 0px; height: 100%">

<tr>

<td colspan="2" style="height: 135px; font-size: small; text-align: left; clear: none;

width: 875px; border-bottom-color: silver; border-bottom-style: ridge;" valign="top">

<br />

<asp:LoginName ID="LoginName1" runat="server" FormatString="Hi! , {0}" Height="16px"

Style="left: 32px; position: absolute; top: 16px; text-transform: none; padding-top: 2px"

Width="105px" />

<asp:ImageButton ID="ImageButton1" runat="server" Height="36px" ImageUrl="~/HomEm8/Images/IdeaIcon.jpg"

OnClientClick="" Style="left: 64px; position: absolute; top: 80px" ToolTip="I have an idea...!"

Width="37px" CommandArgument="" />

<asp:LoginStatus ID="LoginStatus1" runat="server" Style="left: 32px; position: absolute;

top: 48px" Width="144px" LogoutPageUrl="~/index.htm" LogoutText="Logout of HomEm8" />

<asp:Label ID="Label1" runat="server" Style="left: -265px; position: relative; top: 12px"

Text="Hi!"></asp:Label>&nbsp;

<img src="Images/BH_4C.jpg" style="z-index: 102; left: 264px; position: absolute; top: 8px; border-right: #ffff00 thick ridge; border-top: #ffff00 thick ridge; border-left: #ffff00 thick ridge; border-bottom: #ffff00 thick ridge;" />

</td>

</tr>

<tr>

<td style="width: 175px; height: 550px; font-size: small;" align="left" valign="top"

title="Brookside Homes HomEm8 System by Em8s, LLC" colspan="">

<asp:Menu ID="Menu2" runat="server" BackColor="Khaki" DynamicHorizontalOffset="2"

Font-Names="Arial" Font-Size="Small" ForeColor="#990000" StaticSubMenuIndent="10px"

Style="position: absolute; z-index: 120; left: 8px; top: 144px;" Font-Overline="False"

ItemWrap="False" Width="120px" Height="109px">

<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<DynamicHoverStyle BackColor="#990000" ForeColor="White" />

<DynamicMenuStyle BackColor="Khaki" />

<StaticSelectedStyle BackColor="#FFCC66" />

<DynamicSelectedStyle BackColor="#FFCC66" />

<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" BackColor="Khaki" />

<Items>

<asp:MenuItem Selectable="False" Text="I want to work on..." Value="I want to work on...">

</asp:MenuItem>

<asp:MenuItem Text="Customers" Value="Customers">

<asp:MenuItem Text="Add New Customer" Value="Add New Customer"></asp:MenuItem>

<asp:MenuItem Text="Update Customer Info" Value="Update Customer Info"></asp:MenuItem>

<asp:MenuItem Text="Add a New Dream" Value="Add a New Dream"></asp:MenuItem>

<asp:MenuItem Text="Modify Existing Dream" Value="Modify Existing Dream"></asp:MenuItem>

<asp:MenuItem Text="Customer Contacts" Value="Customer Contacts"></asp:MenuItem>

</asp:MenuItem>

<asp:MenuItem Text="Sites" Value="Sites">

<asp:MenuItem Text="Add or Modify" Value="Add New Site">

<asp:MenuItem Text="Site" Value="Change Site Info"></asp:MenuItem>

<asp:MenuItem Text="Neighborhood" Value="Neighborhood"></asp:MenuItem>

<asp:MenuItem Text="Township" Value="Township"></asp:MenuItem>

<asp:MenuItem Text="County" Value="County"></asp:MenuItem>

</asp:MenuItem>

</asp:MenuItem>

<asp:MenuItem Text="Product Warehouse" ToolTip="All Plans and Options are Defined in this area."

Value="Product Warehouse">

<asp:MenuItem NavigateUrl="/Edit_pdPlan.aspx" Text="Plans" ToolTip="Add or Edit Plans"

Value="Plans"></asp:MenuItem>

<asp:MenuItem Text="Plan Types" ToolTip="Add or Modify Plan Types" NavigateUrl="~/HomEm8/Edit_pdPlanType.aspx"

Value="Plan Types"></asp:MenuItem>

<asp:MenuItem NavigateUrl="~/HomEm8/Edit_pdLoca.aspx" Text="Locations" Value="Locations"

ToolTip="Add or Modify Locations"></asp:MenuItem>

<asp:MenuItem Text="Items" ToolTip="Add or Modify Items" Value="Item" Enabled="False">

</asp:MenuItem>

<asp:MenuItem NavigateUrl="~/HomEm8/Edit_pdItemCtgy.aspx" Text="Item Categories"

ToolTip="Add or Modify Item Categories" Value="Item Categories"></asp:MenuItem>

</asp:MenuItem>

</Items>

<StaticHoverStyle BackColor="#990000" ForeColor="White" />

<StaticMenuStyle BorderStyle="Outset" BorderWidth="2px" />

</asp:Menu>

</td>

 My issue is difficult to explain as it is one that occurs only when hovering or "mousing"  over the dynamic menu items.  When I do so, a portion (the portion adjuacent to the dynamic menu) of the Gridview, etc, whatever is in the content area (in a column on the page adjacent to the column the menu is in) will visually shift or jump maybe 10px to the right when the dynamic menu is active, then return to correct position when not over the dynamic menu.

A different issue but similar, when I choose to edit an item in gridview, as soon as my mouse goes over any field in update mode I get the same grapic shift only it leaves a "ghost" of the button, textbox frame, whatever in the active row of the grid. I will email you a screenshot of it.

Thank you for your help.

 


Steve Holzer
[email protected]
www.Em8s.net

Why don't computers do what I want them to do instead of....what I tell them to do!?!?!?

Stevishere
Asp.Net User
Re: Dynamic MenuControl in MasterPage pushing Content (Screenshot added)6/10/2007 5:28:14 PM

0/0

Shows skewed Gridview


Steve Holzer
[email protected]
www.Em8s.net

Why don't computers do what I want them to do instead of....what I tell them to do!?!?!?

oooshola
Asp.Net User
Re: Dynamic MenuControl in MasterPage pushing Content (Screenshot added)6/10/2007 11:06:42 PM

0/0

Have you viewed this in firefox or any other browser? perhaps troubleshoot that it's first not just IE7 that's doing this.


What do you think?
www.dayinblackhistory.com
www.studentorg.vcu.edu/asuasu
Stevishere
Asp.Net User
Re: Dynamic MenuControl in MasterPage pushing Content (Screenshot added)7/10/2007 9:35:14 AM

0/0

I have not.  Regardless, I need to have IE 7 able to view the site without this issue as most of my clients utilize IE6/7.


Steve Holzer
[email protected]
www.Em8s.net

Why don't computers do what I want them to do instead of....what I tell them to do!?!?!?

sjanaki1984
Asp.Net User
Dynamic MenuControl in MasterPage pushing Content1/31/2008 1:05:33 PM

0/0

Hello Iam S.Janaki from Chennai India. I have some issues.I  have been given an application to be devloped   using ATLAS.Its working plz check this URL as im not able to say in word about its functionality

http://www.asp.net/AJAX/AjaxControlToolkit/Samples/CascadingDropDown/CascadingDropDown.aspx

It has to work like that example.I have to fetch data from DB.Any example would be good. I haven complted some part of it but still it has worked upon any one like to help me plz ping me on my id

[email protected]

Ill be really gratefull to all 

 

 

 

sjanaki1984
Asp.Net User
CascadinDropDown Control1/31/2008 1:06:00 PM

0/0

Hello Iam S.Janaki from Chennai India. I have some issues.I  have been given an application to be devloped   using ATLAS.Its working plz check this URL as im not able to say in word about its functionality

http://www.asp.net/AJAX/AjaxControlToolkit/Samples/CascadingDropDown/CascadingDropDown.aspx

It has to work like that example.I have to fetch data from DB.Any example would be good. I haven complted some part of it but still it has worked upon any one like to help me plz ping me on my id

[email protected]

Ill be really gratefull to all 

 

 

 

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


Free Download:


Web:
Master Pages fail to recognize new controls - Stack Overflow How do I get ‘footer’ content on a master page to push down when main ... Dynamic rendering of webpage for logged in users only · ASP.NET Masterpage in separate assembly · What is the Best Way to Populate a Menu Control on a Master Page ...
Great New Advanced Article on ASP.NET 2.0 Master Pages - ScottGu's ... Definitely worth checking out if you want to really push master pages hard and get .... I even got a problem with my menu control in my master page. the menu ..... that I wrap around dynamic content and use to apply my CSS rules with. ...
Inside Microsoft: Structuring an ASP.NET 2.0 Site using Master ... ... and debating how much logic to push into stored procedures and how much to keep in ... NET 2.0, once you have a master page for a site, adding content pages ..... In the following example, MasterPage2.master has an asp:Menu control in ... to see this in a static image, but that menu flyout is actually dynamic. ...
CodeProject: ASP.NET 2.0 Illustrated - Chapter 2: Is It Really ... Jul 20, 2006 ... NET 1.x, and you still had to figure out how to push the changes back into the ..... At runtime, the Master Page content merges into the content ... and effective solution is often a dynamic fly-out or drop-down menu. ... Figure 2.25 Adding a SiteMapDataSource and menu control to the Master Page ...
Worth using master pages on a static site? - ng.asp-net-forum ... Server-side Flash: Scripts, Databases, and Dynamic Development Authors: ... Is this a known bug or are there any caveats to watch out for when using Master Pages with Menu control? ... Definitely worth checking out if you want to really push master pages ... how to handle masterpage's event in content page? (c#) ...
Data Tutorial #2: Building our Master Page and Site Navigation ... NET will also merge the content together at runtime – and send down a single html page ..... But it often breaks down and you need to use the "push" ie Event handling .... thrid level pages are "detail" pages and the title and url parameters are dynamic. .... I have a menu control on a master page using a SiteMap. ...
K. Scott Allen : The MasterPage Article I Thought I’d Never Finish I have added a menu control to a master page. ..... So now I would like to push a button on the web user control that is on the first tab and have ..... “ Dynamic Server Controls, Events in content pages that also utilize a MasterPage… ...
Improving SharePoint Performance (Publishing) « Grumpy Wookie Dec 7, 2008 ... you just need to add a few tags to the Master Page. ... Sometimes, the ViewState is not actually needed – like with a menu control, ... NET) will then switch off ViewState (or not) – and thus push out the necessary ... Any aspx or SharePoint dynamic content is re-generated each time (as you’d want). ...
.NET ASP [Archive] - Page 27 - bytes NET 2.0 - Having trouble creating master page · Only Firefox asks for .... Best practice - dynamic controls vs page life cycle vs viewstate · Failed to start monitoring changes to '. ... Net 2.0 Menu Control SeparatorImageUrl .... NET push new content to browser automatically · flash video and asp.net ...
ASP.NET web controls May 6, 2006 ... 1: Displays properly in a child content holder(master pages) 2: Bind to .... Dynamic Menu Control in ASP.NET2 ... Push Button Event in datagrid ... I am working in the ContentPlaceHolder on a page using a masterpage. ...




Search This Site:










showing the newly added node in asp.net treeview without the need for scrolling

gridview with contentpage problem when updating

master page menu doesnt not refresh

inheriting master pages to aspx pages. widbey

override function from a master page

add one custom parent node in sitemap

update web pages without a refresh

master page contents disappearing

accessing controls across <asp:content> tags

how to remove 'margin-left:16px' anchor style attribute rendered in menu item

remove link from treeview

dataaccess object in masterpage. is this a good idea?

sitemappath

proper way to change themes programmatically?

sitemappath and server.transfer woes

how can i add the user control to treeview nodes

accessing master page in webpage

controls disappear: masterpage, linkbutton & sitemappath debugging

master page with third party client side post question

navigation and sitemaps in asp.net 2.0

problem with themes at design-time for custom-built server controls

treeview selection without postback solved....

treeview populate-on-demand expand problem. please take a look.

asp.net to google sitemap

problem with configuration

using form with an action value in a masterpage

filling a treeview recursively with data from a sqldatasource

swap out elements from a master page

masterpage for a theme ... skinning

treeview and postbacks in ie

  Privacy | Contact Us
All Times Are GMT