Although this is FAQ i still couldn't find a suitable solution. I'd like to filter out a list (rendered with ListView control placed to UpdatePanel) as user types something in TextBox. This blog post describes exactly what i need - raise a postback after a specified number of characters added. But the implementation has a few minor drawb...
I'm using an AsyncFileUpload (AJAX Toolkit) to upload images.
I have a Button which handle the image resizing.
This have worked fine for some time, but not anymore...
protected void BtnUploadImage_Click(object sender, EventArgs e)
{
var imageFileNameRegEx = new Regex(@"(.*?)\.(jpg|jpeg|png|gif)$",
RegexOptions.IgnoreCase);
...
Hello,
I have an ASP.NET Web application. I am building it with Visual Studio 2005. One of my user controls requires the AJAX Control Toolkit. For some reason though, my project will not build. However, I have referenced the AjaxControlToolkit assembly. It is appearing in the project references.
Does anyone have any ideas as to why thi...
Hi,
Does anybody know how using AutoCompleteExtender (from AJAX Control Toolkit) prevent user from entering anything not in suggested values?
...
I have several ReorderLists on a page.
Each list has items added to it via a postback, which updates the list.
PostBackOnReorder is true, and we have an event handler hooked up on OnItemReorder.
The problem is that the drag and drop seems to allow for an item to be dragged from one list to another (which is something we do not want), ...
I expect it to be Thread.CurrentThread.CurrentUICulture.DateTimeFormat.ShortDatePattern if not specified explicitly in CalendarExtender.Format property but it's not. I don't set the property in my .aspx markup but in the debugger it reports "d". Well, DateTime.Now.ToString("d") returns "31.10.2009" (which corresponds to CurrentUICulture)...
Hi All, I'm using ComponentArt MultiPage control in my application. I'm also using AjaxControl Toolkit's ModalPopUpExtender control. I get the javascript error "Sys.UI.DOMEevnt is null or not an object". I noticed that if I have the ScriptManager in the same page as any ComponentArt control, I get this error. Can someone please suggest m...
have an AjaxControlToolkit Accordion control included in a custom UserControl.
I'm binding it to a datasource and on the itemDataBound I register a few controls as AsyncPostbacks.
Somehow, from an ascx control the event on the itemcommand of my UserControl is never launched although there's no problem when I include this userControl di...
Hi again! I am with a little problem with the arrow image of a ComboBox control (AjaxControlToolkit).
I define this style:
.WindowsStyle .ajax__combobox_inputcontainer .ajax__combobox_buttoncontainer button
{
margin: 0;
padding: 0;
background-image: url(../icons/windows-arrow.gif);
background-position: top left;
bor...
Hello,
I'm having this problem. When the calendar extender is outside an UpdatePanel, it works perfectly on IE8, however, when inside it, it doesn't show. Anybody having this issue?
Thanks.
...
Hi to everyone,
I'm using the AsyncFileUpload control to upload images.
It works fine from loaclhost, but when I uploaded it on server I get the following error.
I can't even understand the reason of this error.
I'll appreciate any answer.
Thanks in advance
This is the Method that I'm using
protected void AsyncFileUpload1_Uploaded...
An accordionpane isn't an accordionpane without pointing down that shows the user they can expand it... However I can't find out where to hook into to fire a javascript method that flips the arrow when the accordionpane is expanded/contracted.
...
I have the latest release of the AjaxControlToolkit, and am using an AjaxControlToolkit Html Editor control inside an AjaxControlToolkit ReorderList. I need to be able to access the "content" property so I can write the value to the database but FindControl doesn't find it.
for instance, I can find a TextBox control inside the ItemComm...
I have an object datasoure that returns an object representing one record. However, the object is large and contains some lists. I would like to display this object with a formview that serves as a header and then an AJAX tabcontainer underneath with various tabs for the logical groups of data pertaining to that particular object. I h...
hi i am having problems with to define my trigger control in the ajax updatepanel. the button is inside a loginview now i wonder if this is possible to make the updatepanel to find that control somehow?
tried to search but did not find any info on this
...
When setting up the Ajax Control Toolkit's AutoComplete control, it creates an AutoComplete.asmx and a AutoComplete.vb file. The AutoComplete.vb file automatically ends up in the App_Code folder. I was hoping to move all of these styled-classes into a separate namespace, but the compiler simply does not dig it.
Is this possible, or ...
I have VS 2005, 2008 on my dev box.
New project from other developers who only have 2005 installed. When I build it I get error.
Error 1 Indirect reference is being made to assembly System.Web.Extensions version 3.5.0.0, which contains 'AjaxControlToolkit.CalendarExtender'. This Project references a prior version of System.Web.Exten...
Hi, im using a ComboBox for a feature in my application, and i have AutoCompleteMode="Suggest".
However, after i type in the textbox for a search, i need to press ENTER twice to postback and show some results. This is the default behavior, like its shown in the oficial demonstration.
In my opinion, its kinda annoying and not intuitive.....
I want to use the MaskedEditExtender to mask short dates. The problem is that I want to mask the field depending on the user language settings.
This is working for a lot of cases, but for example for Latvian Culture (with format 9999.99.99. ) is not working.
<cc1:MaskedEditExtender ID="MaskedEditExtender1" runat="server" AutoComplete=...
This should be a pretty simple thing to do with Update Panels, but I'm having troubles.
I want to update the updatePanelSelectedVendors on vendorsComboBox selection change, when the gridview pages, and on the delete buttons in that panel. I don't want to refresh the vendor combox at all, but I don't want to do a full post back.
The prob...