Menu Image With Dropdown Text Subitems

Feb 14, 2011

I have a menu user control with image buttons like this one:

<asp:TableCell ID="tcDownload" runat="server" CssClass="MyMenuTableCellDownload" VerticalAlign="Top" >
<asp:ImageButton ID="ibtnDownload" runat="server" ImageUrl="~/Images/MyMenu/tb_download_1.gif"
CssClass="MyMenuIbtn" ToolTip="Download Results" />
</asp:TableCell>

In the codebehind, I handle the onclick for these to navigate to another page:

ibtnDownload.Attributes.Add("onclick", "document.location.href = '" + strNavUrl + "';return false");

Elsewhere in the user control, I have regular text menus like this one:

<asp:TableCell ID="tcMyMenuCust" runat="server">
<asp:Menu ID="menuMyCust" runat="server" StaticDisplayLevels="1" MaximumDynamicDisplayLevels="1" Orientation="Horizontal"
CssClass="MyMenuCustomer" StaticMenuItemStyle-ItemSpacing="0px" DynamicMenuItemStyle-CssClass="MyMenuDynamicItem"
StaticMenuItemStyle-CssClass="MyMenuStaticItem" DynamicHoverStyle-CssClass="MyMenuDynamicItemHover" DynamicVerticalOffset="0"
StaticHoverStyle-CssClass="MyMenuStaticItemHoverCust" StaticEnableDefaultPopOutImage="false"
DynamicPopOutImageUrl="~/Images/MyMenu/menu_arrow_grey.gif" DynamicMenuItemStyle-VerticalPadding="2"
DisappearAfter="0" OnMenuItemClick="menuMy_MenuItemClick">
<Items>
<asp:MenuItem Text="Customers" ImageUrl="~/Images/MyMenu/MyMenuGradientTransparent.png" Selectable="false">
<asp:MenuItem Text="Domestic "
Value="Customer_Domestic",
NavigateUrl="~/MyMain.aspx?_page=DomCusts&_title=DomesticCustomers">
</asp:MenuItem>
<asp:MenuItem Text="International "
Value="Customer_International"
NavigateUrl="~/MyMain.aspx?_page=IndCusts&_title=InternationalCustomers">
</asp:MenuItem>
</asp:MenuItem>
</Items>
</asp:Menu>
</asp:TableCell>

What I want to do is extend the menu choices by changing the image buttons to behave like the regular menus, while maintaining their look (image resource). That is, clicking on the image should result in a submenu dropping down to display subitems. I know it's possible to use properties such as StaticEnableDefaultPopOutImage to indicate that a menu item has child items. I also understand that menu items can have background images, but what if I simply want to use an image rather than text on a main menu item that drops down subitems when clicked?

View 1 Replies


Similar Messages:

Web Forms :: Display A Shorter Text In A Dropdown Menu?

Jan 17, 2010

Since there is no way to wrap your databound dropdownlist, can someone tell me how to convert dropdown item like "abcdefghijklmnop" to "abcdef....."?

This is what I have so far:

[Code]....

View 2 Replies

Web Forms :: Menu Control - Does Not Render Image On Dynamic Menu

Sep 2, 2010

I am doing a rework on one of my sites and I am attempting to use the asp:menu control.

I am using images in the static and dynamic menus. Hard coded at this point.

On my local machine it works fine but when I upload to the server, the image on the dynamci menus do not appear.

Instead I just get white space where the images should be.

Here is the code:

[code]

View 2 Replies

Web Forms :: How To Build A Menu And Each Item Of The Menu Has An Image As Background

Apr 19, 2010

I am need to build a menu and each item of the menu has an image as background knowing that i depend on sitemap to build the menu i used

[Code]....

where menuitem is in a css sheet

[Code]....

it display the image but in the wrong place?

View 1 Replies

Web Forms :: Menu Control Click Event Not Firing / How To Pass The Selected Menu Item Text To The Other Page

Jan 10, 2011

I am using frames in my webpage.in one of the frames i have a menu control whose items are database driven.when click on the menu item, i want another page to be displayed in other frame.

now i want to pass the the selected menu item text to the other page using session variable which is in the menu item click event method.but the thing is when i click on the menu item, the click event is not firing.

is there any better way to pass the selected menu item text to the other page?

View 1 Replies

Convert The Value - ListViewRecs.SelectedItems[0].SubItems[0] - To Integer?

May 22, 2010

int val = lstvRecordsCus.SelectedItems[0].SubItems[0];

The returned value is an int in a string datatype. I need the right hand side to return the value in int instead of string.

I tried Convert.ToInt32, it didn't work.

All the values that comes from SelectedItems[0].SubItems[0] is of type int.

View 2 Replies

Forms Data Controls :: How To Control The Hide/show Of Subitems

Feb 14, 2011

I basically need some items in a grid however each item contains subitems so I need a +/- type button to show/hide them. Is there a control to do this or would it be easier to simply put them in a CSS table and use jquery or something similar to control the hide/show of subitems?

View 1 Replies

Javascript - Hide Menu Item Or Dropdown Menu Item?

Aug 31, 2010

I have dropdown menu item ("pin this site") that i need to hide it or hide menu item itself ("My Network").

When I saw viewsource on page, I got below code.

<a class="zz1_TopNavigationMenu_1 ms-topnav zz1_TopNavigationMenu_3
ms-topnavselected zz1_TopNavigationMenu_9" href="http://mynetworkqa.spe.org"
style="border-style:none;font-size:1em;">My Network</a>
<a class="zz1_TopNavigationMenu_1 ms-topNavFlyOuts zz1_TopNavigationMenu_6"
href="javascript:__doPostBack(,
'ctl00$PlaceHolderTopNavBar$PlaceHolderHorizontalNav$topSiteMap''Pin')"
style="border-style:none;font-size:1em;">Pin this site</a>

How can I hide menu item?

View 1 Replies

Web Forms :: Can Expand/collapse Image On The Top Of First Level Menu' Image?

Jan 28, 2011

I soved my first problem (Can image as top menu by using sitemap ?) Now I hope Expand/collpse images of tree view on the top of my main menu's image. Do I have anyway to do so?

View 1 Replies

Web Forms :: Asp:menu Dropdown Using IE9

Mar 15, 2011

I have a asp:menu that's using data from a .sitemap file. This site is running on server 2003 asp.net 2.0. I assume IIS v6? When using IE9 normally the dropdown menu shows but you can't select anything from it (the pointer goes away when you hover over it) and it disappears. If you go into Compatibility mode, the dropdown menu shows and you can access the menu items but the item hover background color is lost (supposed to be white with #CC0000 text. Background is #CC0000 so you can't see the text).

This didn't happen with any other versions of IE. If you check it in any other browser, it works as expected.
Funny thing is if I run it out of my local IIS v7 (Win7) or my dev server from VS 2010 (localhost), it works fine in IE9.

View 2 Replies

Web Forms :: Dropdown Menu Bar

May 21, 2012

How to create dropdown menu bar in asp.net?

View 1 Replies

Web Forms :: Dropdown Menu Not Working In IE8

Nov 6, 2010

I just recently got complains from some of my customers, that their drop down menu does not work in IE. The drop down menu is just a white frame, and when navigating down the menu disapperas. I investigated the problem, and found that it works fine in IE6 and other browsers.

View 1 Replies

ADO.NET :: Selecting Table From A Dropdown Menu?

Feb 5, 2011

I was wondering if ther is a Way to select a table name from a DropDown Menu and then dispaly the data in say a GridView?

For Example;

In PHP you can post a Value to a Veriable and Put that Veriable into a SQL Statement.

"SELECT * FROM '.$VAR.'" would be the statment used to return the data.

I was wondering if there was a similar way to dot his. Currently I have a different page for each table with other dropdown menus to select other options, or would continuing to do it like i have just stated be better?

View 5 Replies

Dropdown Menu On Link Button?

Jul 30, 2010

I have created user control for menu bar and loading in Master page. User control has Link buttons. Now I want create drop down menu for one of Link buttons. I dont know, how to do that? Is there any other control that supports?

<asp:LinkButton ID="btnAttributeProcessing" CausesValidation="False" ForeColor="White" runat="server">Data Processing</asp:LinkButton> |
<asp:Label ID="lbLinks" ForeColor="White" runat="server"></asp:Label>
<asp:LinkButton ID="btnGroupsetup" CausesValidation="False" ForeColor="White" runat="server">Group Set-up</asp:LinkButton> |
<asp:LinkButton ID="btnRegressionConfiguration" CausesValidation="False" ForeColor="White"
runat="server">Regression Configuration</asp:LinkButton>
<asp:Label ID="lblConvPipe" ForeColor="White" runat="server"> | </asp:Label>
<asp:LinkButton ID="btnDetailedGroupConfig" CausesValidation="False" ForeColor="White"
runat="server">Detailed Group Config</asp:LinkButton>

View 1 Replies

Web Forms :: Asp:menu (4.0) Is Behind Dropdown List In IE6

Oct 6, 2010

I have a couple of drop down list inside a update panel and a asp:menu. When the site is accesed with IE6 the asp:menu appears behind the dropdown combos. I already try fix it with z-index but nothing happen, the dropdown still appears in front of asp:menu. is a bug in IE6, or there is a workaround? This not happen with IE7, IE8 and Firefox.

View 1 Replies

Web Forms :: Dropdown Menu Name Change

Apr 11, 2010

I cannot change the text in the drop menus. It was originally "Select a General Market", and "Select a Market". I have changed them and the changes due not take effect. I can change the labels, but not the default text inside the dropdown list. Is this something that needs to be changed elsewhere?

<asp:label id="lblSelectGenMark" runat="server">Select a market: </asp:label>
<asp:dropdownlist id="ddlGreaterMarket" runat="server">
<asp:ListItem Value="None">Select a market</asp:ListItem>
</asp:dropdownlist>
<asp:label id="lblSelectMark" runat="server">Select a region:</asp:label>
<asp:dropdownlist id="ddlMarket" runat="server">
<asp:ListItem Value="None">Select a region</asp:ListItem>
</asp:dropdownlist>
<asp:button id="Button1" runat="server" Text="Filter Scores"></asp:button></P>

View 13 Replies

Web Forms :: Dropdown Menu Using Ajax?

Oct 21, 2010

I have a requirement that In Menu I have Tabs When i put mouse on any Tab ,it opens the sub menus.

When i remove mouse, it closes the sub menu.

How to do using Ajax

View 3 Replies

Dropdown Menu Date Range?

May 31, 2010

I have 6 drop down menus:

[Code]....

I want the user to only select a date range of 1 year. Any suggestion on how to do this? I was thinking maybe convert the date range into days and if its less than 365 days than input is good, other wise out of range message willl display.

View 4 Replies

Delete Contents Of Selected Dropdown Menu?

Mar 20, 2011

i have a dropdownmenu which collects data from a sql table and a delete button i want to delete the data (complete row) which is selected by the dropdown menu

View 5 Replies

C# - Tweaking Menu Control Like A Mega Dropdown

Feb 28, 2011

Platform: Website development on ASP.NET 4.0(Webforms) with C#. Situation: My rendered ASP.NET Menu control is horizontal and has three levels of data. And I have set StaticDisplayLevels="1" so that the menu shows Level1 data horizontally and onmouseover of level1, the menu displays the level2 data and onmouseover of level2, the menu displays level3 data.

Requirement: To display level2 and level3 data in a single list, with the children of first level2(if any) get displayed below the first level2 data. Then comes second level2 and its children(if any) and so on. Consider the above image. What i would like to have, is a display like the one on the left. But the ASP.NET Menu control renders it like the image on the right side.

I have searched high and low in the net for a solution. I even tried replacing the markup of the generated asp.net control using Menu's DataBound event and then injecting javascript hack to it. I succeeded in it but it lacks reusability. What I would like to have is a way to implement a re-usable ASP.NET Menu Control with static level2 (and level3) after dynamic level1 which acts like a megadropdown. I am sure that there should be a way and that I am going the wrong way.

View 2 Replies

Dropdownlist - Dropdown Menu Item Color

Aug 10, 2010

I have a DropDownList on an ASP.NET page that gets populated by a SQL database.

<asp:DropDownList ID="ddlName" runat="server"></asp:DropDownList>

The population is down in the code behind file:

ddlName.DataSource = SqlDataSource1;
ddlName.DataValueField = (this.ddlName.SelectedValue);
ddlName.DataTextField = "ccName";
ddlName.DataBind();

I was wondering if it was possible to change the background or text color of an item in the list based on it's value? I just noticed that the example below works when the page first loads but on postback the text color disappears even though that is where the code is. Is there something I am missing?

protected override void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
ddlName.DataSource = SqlDataSource5;
ddlName.DataValueField = (this.ddlName.SelectedValue);
ddlName.DataTextField = "ccName";
ddlName.DataBind();
foreach (ListItem item in ddlName.Items)
{
if (item.Value == "Item 1")
{
item.Attributes.Add("style", "color:red");
}
if (item.Value == "Item 2")
{
item.Attributes.Add("style", "color:red");
}
}
}
}

View 1 Replies

Referencing A Dropdown Menu Inside A DetailsGrid From Outside?

Apr 20, 2010

I have a gridview with a SQL Where clause based on the selected item of a dropdown list which is inside a DetailsView.

I know how to find the controlID of the dropdown list from codebehind using FindControl, but how do I do it declaratively for my Where clause? Or do I do I set up the Where clause somehow using codebehind?

View 1 Replies

Menu Navigation Bar With Dropdown Visible To False?

Mar 22, 2011

I have a menu navigation bar with drop down menu in asp.net project.i have done this with jquery.To get into this page i have 5 hyperlinks in previous page. when i click on one of the hyperlink and enter the navigation bar page,i need to make dropdown visible to false. i dont have any idea related to this.

View 1 Replies

Adding Dropdown Menu To Ajax Tab Panel?

Mar 30, 2010

I tried something like this: It does not work.

HeaderTemplate >
<div >
<a href="#">Summary reports</a> [code]...Is there a better way to do this?

View 8 Replies

Web Forms :: How To Customize Dropdown Menu In Master Page

Feb 27, 2010

I am Unable to customize a menu bar in the master page, so that it is at the middle, and extending to width of the page, like in [URL]. But when i customized a drop down menu bar and trying to align, i am unable to figure out how to do it such that it appears as the above example, find code below. I uploaded my code onto this link, its all in txt file, so take a look at it as when i try to post the code here, it is automatically turning it into a webpage.

[URL]

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved