I am using the example on the AJAX website for the dropdown extender. I'm looking to make the target control, the label, have the dropdown image appear always instead of just when I hover over it. Is there any way to do this?
...
Ok, so I got my extender working on a default.aspx page on my website and it looks good. I basically copied and pasted the code for it into a user control control.ascx page. When I do this I completely loose the functionality (just shows the target control label and no dropdown, even upon hover). Is there any reason why it doesn't wor...
Hello,
I have a gridview where all rows are editable by default. Most columns require a simple textbox with some formating validators which are not an issue.
I do however have 1 column that requires a List of Choices from which the user can select.
To do this I am using the Ajax Drop Down Extender to bind to the textbox, so when the t...
I have a textarea that has the ajaxcontroltoolkit dropdownextender associated with it, and a panel that contains a gridview with the options for the user to select from.
Here is the code for these items:
<asp:UpdatePanel ID="updPnlView" UpdateMode="Conditional" runat="server">
<ContentTemplate>
<asp:TextBox ID="txtSiteName" run...
Hi
I have a sidebar menu. There's not a lot of room, I'd like to use the Ajax DropDown so that only items at the top level hierarchy are displayed until the user clicks.
I currently have one DropDown stacked on top of another (ultimately there will be approx 10).
I've got the drop down working with an OnShow/FadeIn animation. The probl...
Hi,
I've got some strange problems and I don't know what to do about them. First I have an UpdatePanel which has a GridView inside. In one of the column definition there is a DropDownExtender and a Panel wrapping a CheckBoxList:
<asp:UpdatePanel ID="updGrid" runat="server">
<ContentTemplate>
<asp:GridView ID="GridView...