Web Forms :: How To Show Menu SubItem Whenever Mouse Move On It
Aug 17, 2010
I made a menu control in my ASP.Net page. I have added child items to it. I want that whenever I move mouse on this menu control. It should show me child objects. Just like when ever we put mouse on some control the tooltipText is shown. I've read that their is some hover property, but I don't know how to implement it.
I am trying to populate menu from database in asp.net 3.5 but as i am new to this technology i really don't know what is the exact way. I tried to find out on web but i found nothing useful for me.
I am developing site for bookstore.First i want to populate departments and then in department, their categories as subitem.
I have both the tables in database.
I tried following code but it is giving me an erroe on relation code line
This constraint cannot be enabled as not all values have corresponding parent values.
All departments dont have categories.
code :
DataSet DepartmentData = new DataSet(); DataTable Department = CatalogAccess.GetDepartments(); DataTable Categories = CatalogAccess.GetCategories(); DepartmentData.Tables.Add(Department); DepartmentData.Tables.Add(Categories); DepartmentData.Relations.Add("Children", DepartmentData.Tables[0].Columns["DepartmentId"], DepartmentData.Tables[1].Columns["CategoryId"]); foreach (DataRow item in DepartmentData.Tables["Department"].Rows) { MenuItem DepartmentItem = new MenuItem((string)item["Name"]); DepartmentItem.ChildItems.Add(DepartmentItem); foreach (DataRow childItem in item.GetChildRows("Children")) { MenuItem childrenItem = new MenuItem((string)childItem["Name"]); DepartmentItem.ChildItems.Add(childrenItem); } } Departments.DataBind();
and how to add navigation url too!
I can use any other logic but i want to know the better way to code this from expert.
This application motto is find out the mouse move the out side of the application[nothing but mouse must be with in our application browser tab only. not move to other tabs. if its happens out side application it must close].
I have a gridview with list of companies. I want to provide an option to user that, when user mouse over, the user has to see the delete(imagebuttion) option and clicking on that need confirm buttion. The below articles are very useful but the delete option is always visible to end user which I dont want in my application.
I have added 4 CollapsiblePanel programmatically and it is working with IE7 and IE8 but it is not working with IE6 its behaving flashing while expand and collapse and on mouse move to the panel.
i have this on my gridview RowDataBound method. and my grid view has BoundFields which i use to display data, it is always on insert mode. i wand and edit mode. i want the bound textbox fields to change colour on onmouseover and on select to match the entire row colour background as i have specify on d code below. how do i do that? i knw how to change everything bt dnt knw how to oldy change the selected row and changing it only on onmouseover n select. the only thing i wanna change is d controls backcolour
I have a problem with my visual studio 2008 for my ASP.NET application on one PC (HP with Windows XP). The Dynamic submenu items are not visible when mouse over a menu. The same application works fine on another PC. It worked fine on the same PC 4 months ago. In recent 4 months, my PC had some updates, like windows XP updates, Visual studio 2008 updates, flash update, adobe update, and iTunes update. After I noticed the problem, I had tried to uninstall the all updates except windows XP updates; and tried to uninstall Visual Studio 2008 completely; then re-install it again.
I have used a ajax control toolkit slide shox extender to display a slide show of images.
Currently, when a user hovers mouse over the slide show, the slide keeps on changing. I want that the slide should not change, if a user hovers the mouse.
I'm trying to style an asp:Menu, so that when I hover over a child menu, all the parent menu's will have the background mouse over selected colour. (Take a look at the win xp start menu for example, with default theme blue, all parent menu's will be highlighted as blue if a child is selected) At first I thought this was something simple, but after intense researching (google), I am beginning to wonder...
i have a menu, what i want is that when i click on parent item of menu then only subitem should display,mean i dont want to display subitem on mouseover. what should i do.Is there any property should i set or i have to write code for it .
i want to get data from database of field Name and Gender, and then display it in Label name and gender. when i click save it move to next record and display name and gender that next record.
In windows forms, there is the "show data sources" under the "data" menu item, and I love it because I can drag and drop the fields I need onto the form and it makes the control automatically.In web forms however, this option isn't there. Why? I try to drag and drop fields from the "server explorer" but it generates grids, I don't want grids I just want to drag and drop the text boxes or checkboxes etc.