AJAX :: Gridview Detail With Hover Menu Extender?
May 17, 2010[Code]....
[Code]....
[Code]....
[Code]....
I am trying to develop menu usings the hover menu extender. I have nested menus - in other words, if some items in the drop down menu (hover) have menu items that are displayed next to it (using another hover menu extender control). I am trying to keep the original menu displayed when the sub menu is displayed, but with no luck. I have tried using animation, but that doesn't seem to work.
View 9 Repliesi am displaying drop down in modal pop up ,when i validate ,i want to show error through hovermenu ..error is
Line: 4044
Error: Sys.InvalidOperationException: Two components with the same id 'hm1' can't be added to the application.
if i use outside (not in modal pop up ) hover menu is working properly
[Code]....
iam placing the textbox of slider control in one panel and this panel iam showing when mouse goes to a linkbutton by using hover .the problem is when iam using slider extender with hover iam getting the following error for the slider control ---the errro is set valid value for the height and widht attributes in the slider css classes..how to solve this problem
View 3 RepliesI wanted to replicate this on my website. I already hava a gridview with data from my database, and now i wnated to add the hover menu to each row of the gridview. How can i accomplish this?
View 3 RepliesMy Master/Detail view is working fine, but if i try to add Modal PopUp extender it does not work at all.
[Code]....
adding Modal Popup to this code. I have studied [URL] article many times but could not find problem with my code. My code should display Modal PopUp 2 times. Once New Client btn is clicked & other time when edit inside GridView is clicked.
I bind a hover extender to a cell in a gridview, using following code:
Sub GridView1_RowDataBound(ByVal sender
As
Object,
ByVal e
As System.Web.UI.WebControls.GridViewRowEventArgs)
Handles GridView1.RowDataBound
If e.Row.RowType = DataControlRowType.DataRow
Then
Dim hoverMenu
As HoverMenuExtender =
CType(e.Row.FindControl("hoverMenu"), HoverMenuExtender)
e.Row.Cells(1).Controls.Item(0).ID = e.Row.RowIndex.ToString()
hoverMenu.TargetControlID = e.Row.Cells(1).Controls.Item(0).ID
End
If
End
Sub
Now This works perfectly and the panel appear when hovering over the second cell. However after a postback it is no longer working and no panel will show when hovering over the cell.
Can any one help me to implent ajax hover menu in my grid i did the way which they mentioned in http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/HoverMenu/HoverMenu.aspx
but i am not able to find here is my grid view
[Code]....
i would like creating ajax hover menu with asp.net application in profeesional way
View 1 Replieswhen I hover over a menu option it's contents are shown above instead of the Bottom off. Even though the hover control says bottom. In my browser and others it works fine, I use IE8. But some browsers it's goes wrong.
<cc1:HoverMenuExtender runat="Server"
TargetControlID="pnlNewCustomers"
PopupControlID="pnlNewCustomerOptions"
HoverCssClass="popupHover"
PopupPosition="Bottom"
OffsetX="10"
OffsetY="-10"
PopDelay="50"
/>
css
.popupHover
{background-image:url(images/header-opened.png);
background-repeat:repeat-x;background-position:left
bottom;
background-color:#F5F7F8;}
I have a website that uses a master page that contains the navigation for the site.The navigation buttons are images.Some of the navigation button images have hover menus tied to them.Those hover menus contain several image buttons, so as to create a drop down menu affect.The problem I have is when any of the pages are loading all of my hover menu image buttons flash on the left side of the screen for a second or less as the page is being rendered.Can this be stopped?
View 6 RepliesI have a gridview with a popup menu that successfully runs against Framework 3.5.
In 4.0, the popup no longer seems to be tied to the row that was mouse-overed. the popup still appears, but near the top of the gridview (not near the row) regardlesss of the row that mouse-overed and clicking "Edit" will only edit the top (first) row.
I even tried to simplify and use this example [URL] as a test, the same results occur, run this against 3.5, it works fine, run against 4.0, it breaks. I think there's something wrong with the C# code
[Code]....
there's a better solution with the ClientIDRowSuffix?
I'm trying to create a gridview with a hover menu:
[Code]....
This works just fine, butttttttttt, I want the hover menu to have an extensive description of the record, namelly ID, message, links to uploaded files, print record button etc.
This doesen't work with the hover menu because when the mouse leaves the targetcontrolid the panel disapears.
So my question is:
Is there a way keep the panel hovering until you change to another record?
when selecting an item from any of the dropdown controls the hover menu disappears:
[Code]....
I can highlight a menu-itm when the mouse is hovering over it. How do I highlight a menu item when a sub-menu item is hovered? I have a 4 level menu, 2 static accross the top, one drop-down, and one pop-out from the drop-downs.
While selecting level-4 items, it is a little confusing as to which level-3 item is being popped-out because I have alot of level 3 and level 4 items. I want the appropriate level 3 item highlighted while hovering over its level 4 popout.
I have a override Render method on my AccordionMenu.ascx.cs, basically just replace the <span></span> tag with <div></div> due to w3c compliance requirement, this is the c# code:
[Code]....
but when i try to run it, the page always throws an exception to me like this: Extender control 'MyAccordion_AccordionExtender' is not a registered extender control. Extender controls must be registered using RegisterExtenderControl() before calling. this is the context of my pages: accordion menu is placed in the content page, and the content page is inherited from a master page, the master page has a script manager.
i have a menu control which i get text from a sitemap.
But i want to use hover images and static images? can this be achieved?
ASP.NET Menu Control displays the submenu when hover on root menu.
Is is possible to display submenu permanently without using hover or click on root menu?? if yes then how?
I've encountered was appears to be a strange bug with the menu control, and alas, I am unable to find much useful information on it (which leads me to believe I have something installed or confingured incorrectly). Here the problem:
When declaring a menu control with a staticHoverStyle, for example:
<asp:Menu
ID="navMenu"
DataSourceID="srcSiteMap" [code]....
Has no effect on the behavior of the control once it's rendered, neither in Firefox nor IE.In fact, using the source code at
http://msdn.microsoft.com/en-us/library/ms366731.aspx with no modifications also results in the hoverstyle not working.
This problem seems to be "fixed" if you specify the css attribute declaratively, for example, StaticMenuItemStyle-BackColor="Yellow".
Alternatively, if you specify RenderingMode="table" then the hoverstyle seems to work. It's only when you're using a cssclass with a list that things seem to mess up.
Finally, I notice that in the rendered html, the control embeds some styles between /* <![CDATA[ */ and /* ]]> */ comments that affects the final appearance of the menu control, sometimes overwriting a cssclass you specified (ex: the margin for dynamic menus can only be controlled with the HorizontalOffset property, and not by css). This is undesirable, but I don't see anything that seems to overwrite the behavior of hover elements. Actually, the .hoveritem class doesn't appear anywhere in the markup at all, but when you specify the StaticMenuItemStyle-BackColor property, then the value is rendered correctly in this block of styles.
I am using the following code to create a static menu, but using images instead of text..
[Code]....
how to perform an image swap on hover and also an image swap on click so that it is clear which menu item has been selected?
I have a Page with a FileUpload control on the top with the "Insert" button, in order to insert pictures Below that, i have a Listview showing all the pics. THis is the way i am placing my Update Panel:
[Code]....
How can i, press the INSERT button and reloads only the Content Template after INSERTING?
I'm trying to setup is a News module with article listing paging and article detail paging. I have a GridView with paging that lists my articles just fine. In that list, some article titles have links that direct to an article detail page by passing in the articleID to the details page. I was able to setup my details page, which uses a DetailsView control, to use paging by using an ObjectDataSource with pageIndex and pageSize parameters from the querystring. Once on my detail page, I can use my navigation arrows to move through Next and Previous articles just fine.
No matter which article I click in my article list, my detail page always starts with pageIndex 0 and thus not the article I clicked on. I understand why that is because it's going by pageIndex value instead of articleID. What I need it to do is, set the detail to whatever articleID i pass in, then allow me to navigate Next and Previous to THAT particular article instead of starting me off from pageIndex 0.
[Code]....
article on binding to a list and I've got that working fine on one view. But what I'm stuck when doing it off a master record. Everything seems to work except that when I look in the database the detail records previous associated with the current master have their Foriegn key to master set to Null and a new set of detail records have been inserted. I've got a really simple form for this object
[Code]....
The form collection comes back with the expected prefixes:
[Code]....
And the Controller.UpdateModel(master) binds all the properties correctly. But when I call dbContext.SaveChanges it issues the follow sql from sql profiler (psuedo code)
[Code]....
I've got a work around that works but it's pretty hackish and I'm currently not matching up the keys so it's dependent on everything coming back in the right order. Plus I've got to include all the fields that I want updated.
[Code]....
I thought that entity framework's code first was the culprite but I've unit test that and it works fine. I've got a feeling that UpdateModel is somehow removing and re-adding the children. Has anyone else got this to work? Of course, I could throw in the towel and parse the indexed field names myself, but I'm so close!
I've been experimenting with using EF (asp.net 3.5 sp1) with a master detail page. Using northwind as the database, I'm simply trying to have categories as master and products as detail. I have read everything I could find on the net about the where condition and it still fails with this error as soon as I click the select link in the master grid:
Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerServerErrorException: A property with name 'CategoryID' does not exist in metadata for entity type 'WebAppEF01.Products'.
What strikes me is that the CategoryID column is not exposed by the EF model. That's been rolled up into the navigation element 'Categories' I suppose...but on the surface this seems to create the problem I've running in to. I've tried turning off the autogeneratewhere clause but didn't have success. The code for this page follows below.
[Code]....
i have a page insert data to sql server. On the page there is a combobox and there is a button next to the combox box . when i click the button, open a modal popup extender, adds some data to database. I use gridview in the mpe. The problem is
<asp:Button ID="btnInsert" runat="server" Text="Add" CommandName="Add" CssClass="gridButtons"/>
[Code]....
i want to show alert message if the user presses the "Add" button without entering anything to the textbox.