AJAX :: DropDownExtender - Menu Disappears?
Aug 20, 2010
So I got 2 updatepanels on my page. In one there is a Timer which updates for example a label. In the other one there is a dropdownextender. Everytime the timer ticks while the dropdown menu is displayed the menu disapears. I attached the sample code below....any insights on this? And yes, the dropdown and the label need to be in two seperate updatepanels....
[Code]....
View 3 Replies
Similar Messages:
Aug 3, 2010
when selecting an item from any of the dropdown controls the hover menu disappears:
[Code]....
View 1 Replies
Nov 14, 2010
I am having a problem with my menu. My navigation menu gets created with data from different tables in a database. When the page loads after a few minutes the navigation menu disappears from page. Does anyone have had this problem or knows how to fix it?
View 3 Replies
May 15, 2012
I am using ASP: menu in my site.master page ' but when I clicked on any button or drop down from other page the menu is disappeared. Why my menu is disappearing from the site.master page ?
My code is :
<asp:Menu ID="MainMenu" runat="server" Orientation ="Horizontal" CssClass="menu" EnableViewState="false" IncludeStyleBlock="false" >
<Items >
<asp:MenuItem Text ="Home" NavigateUrl="AllEMP.aspx" >
</asp:MenuItem>
<asp:MenuItem Text ="Menu" NavigateUrl ="~/Default.aspx">
</asp:MenuItem>
</asp:MenuItem>
</Items>
</asp:Menu>
View 1 Replies
Jan 22, 2011
This is what I see when I click on arrow which is an image in DropArrowImageUrl - UI is weird. Changing image does not help. I am sure that it should be a common problem. Code is very simple:
<asp:Image ID="_targetImage" runat="server" ImageUrl="../Images/Actions.png" />
<ajaxToolkit:DropDownExtender ID="_dropDownExtender" runat="server" DynamicServicePath=""
Enabled="True" DropDownControlID="_panelItems" DropArrowImageUrl="../Images/DropArrow.png"
TargetControlID="_targetImage">
</ajaxToolkit:DropDownExtender>
View 2 Replies
Aug 31, 2010
I use DropDownExtenders everywhere in my project, but it bothers me that it's not visible all the time. It looks like an usual TextBox :-(
<script
type="text/javascript">
View 3 Replies
Jan 28, 2010
I have a label with a dropdownextender, and below it I have a gridview. When it drops down, it should go on top the gridview , but instead half of it is hidden because it goes behind the gridview. how can that be taken care of?
View 5 Replies
Oct 7, 2010
Currently, when you click mouse on a control, you see all options. However, I need to be able to see all options when mouse is just over the control.
View 9 Replies
Jan 27, 2011
I would like to Post back an update panel after the drop down is hidden.
I found some javascript that will keep the panel open wile the user interacts with the CheckBoxList i have inside. Currently I am updating the panel when the function stops blocking the closing event. This is not firing every time. So i am wondering if there is a java script event i can catch to fire the post back after the drop down is hidden and if someone can provide a simple example of doing so. The code inside the event i got covered, binding to the event is ware i am lacking.
View 1 Replies
May 27, 2010
<br/>
<br/>
in my aspx page i have this code:
<br/>
<br/>
<asp:DropDownExtender DropArrowBackColor="White"
View 1 Replies
Jan 5, 2010
I need to perform actions (e.g. hide panels) when clicking on the dropdownextender arrow - before the dropdown panel is being displayed.
How should I perform this? should I use onclientpopulated?
View 5 Replies
Aug 2, 2010
Using cascading dropdown extender we have to define web method. In that web method does the parameters that we declare should match names like "knownCategoryValues","category" etc ? Suppose if we write "knownCategoryValues1" insteed of "knownCategoryValues" then why my webmethod is not called ?
And if i give "knownCategoryValues" then it is called ?For the First time i have seen parameters name matters in Method parameters list. But why in this case different naming causes problem ?
View 1 Replies
Oct 7, 2010
I am using the following code:
<ajaxToolkit:DropDownExtender ID="TextBox1_DropDownExtender" runat="server" DynamicServicePath=""
Enabled="True" DropDownControlID="panelItems" DropArrowImageUrl="~/Images/DropArrow.png"
DropArrowWidth='26' TargetControlID="Image1">
</ajaxToolkit:DropDownExtender>
However, it does not set the width of DropArrowImage correctly.
I found the following post http://ajaxcontroltoolkit.codeplex.com/workitem/24194 but I am not sure of where to find DropDownBehavior.js to implement proposed solution.
Is it possble somehow to set the widht of DropArrow?
View 2 Replies
Jun 13, 2010
the dropdownextender works fine until I scroll down the page, see the following screenshots.
View 2 Replies
May 25, 2010
I have the code below to implement a dropdownlist with checkboxes. My problem is that every time i click a checkbox the dropdownlist closes and i need to reopen it to select more checkboxes. How do i make it so the dropdownlist dosn't close until i click off of it?
[code]....
View 3 Replies
Jan 25, 2011
I am trying to keep the drop down open till mouse out.
I have found a hand full of sample scripts that are all trying to do this. I did manage to keep the drop down open while the user clicks on the check boxes.
[Code]....
I would like to instead of just removing the event handler also trigger the "close" event for the drop down list on mouse out. Not the JS expert so i dont know ware to start.
View 1 Replies
Oct 18, 2010
[Code]....
C# code:
[Code]....
View 2 Replies
Nov 8, 2010
i always get this error when ever i use DropdownExtender,Additional information:The Controls collection cannot be modified because the control contains code blocks
i.e. <% ... %>).this is my ASPX Code
[Code]...
View 5 Replies
Apr 23, 2010
The following code listed on the bottom is a dropdown extender contained with a listview insert template. The code works fine however int VS 2008 Debug mode, its throwing the exception:Microsoft JScript runtime error: Sys.InvalidOperationException: Handler was not added through the Sys.UI.DomEvent.addHandler method.If I click ignore or continue, the taret label is properly populated with the appropriate value. Has anybody encountered this and is
<td>
<asp:Label ID="lblTest" style="height:25px;border: solid 1px black" runat="server" Text='<%#Bind("TestCode") %>' Width="90%"></asp:Label>
<asp:DropDownExtender ID="ddExtTestCode" runat="server" TargetControlID="lblTest" DropDownControlID="pnlTestCode"></asp:DropDownExtender>
<asp:Panel ID="pnlTestCode" runat="server" style="display : none; visibility: hidden;">
<asp:LinkButton runat="server" ID="Option1" Text="12345-New York" CommandArgument="12345" OnClick="OnTestCodeSelect"></asp:LinkButton>
<asp:LinkButton runat="server" ID="Option2" Text="45678-New Jersey" CommandArgument="45678" OnClick="OnTestCodeSelect"></asp:LinkButton>
</asp:Panel>
</td>
View 1 Replies
Feb 7, 2011
I have a page with an AJAX TabContainer and 4 AJAX TabPanels and have Save button. On a button click im calling javascript thats make ajax tab disappear why?
View 4 Replies
Feb 21, 2011
I have an asp:UpdatePanel in my .aspx page.Within the panel I have placed an infragistics ultrawebgrid control.Upon clicking a button (placed outside the panel) , I have to export the data in the grid to excel.I am using
UltraWebGridExcelExporter(Infragistics object) for this. The export will occur only with full postback.For this I have added a PostBack tigger for the button to the update panel.But once the export is complete, if I change the selected item in a dropdownlist(Autopostback="true") in the same page,the updatepanel gets invisible.
View 1 Replies
Mar 11, 2010
I have a page with dynamic web user controlsThat WUC has 12 ModalExtenderPanelsall of them work except the last one. What happens is when I click on the panel anywhere it disappears.The rest of them work and the code looks identical.Code:
[Code]....
View 2 Replies
Mar 16, 2011
we are testing the Razor webgrid with Ajax. Works absolutely fine in IE8 when sorting in paging. However in IE7, any attempt to sort or page causes the grid to vanish from the page, leaving a blank space. The HTML that should be there, isn't!Has anyone come across this issue? How could we debug it? Page code below:
[Code]....
View 7 Replies
May 7, 2015
How to center the menuitems and highlight the selected menuitem in menu control in asp.net?
<asp:Menu ID="maspageMenu" runat="server" BackColor="#2D2D30" Width="100%" DynamicHorizontalOffset="2" Font-Names="Verdana" Font-Size="1.4em" Font-Strikeout="True" Font-Underline="True" ForeColor="#009933" Orientation="Horizontal" StaticSubMenuIndent="10px" BorderStyle="Groove">
<DynamicHoverStyle BackColor="#18624F" ForeColor="White" />
<DynamicMenuItemStyle BackColor="White" HorizontalPadding="5px" VerticalPadding="2px" />
<DynamicMenuStyle BackColor="White" BorderStyle="Double" />
[CODE]...
View 1 Replies
Feb 22, 2010
I need a help in creating a vertical oriented Menu control with dynamic url's set in there Navigate Url property.Also i need to set the menu items as enable/disable in two different modes say edit/new.
View 1 Replies