ajaxcontroltoolkit

CalendarExtender in Ajax Control Toolkit - basic code

I want to use CalendarExtender from Ajax Control Toolkit. I want to assign the Calendar to textbox, and want the calendar to be triggered by the clickl on the textbox as in the first example on the toolkit website My code is as follows: <asp:TextBox ID="txt1" runat="server" AutoPostBack="True"></asp:TextBox> <ajaxToolkit:Calen...

Multiple ModalPopUpExtenders on one page inside a UserControl

I have 1 ModalPopupExtender inside a UserControl. Everything works great until I start adding the same usercontrol to the page. I am getting this error message in the javascript console:: Message: Sys.InvalidOperationException: Two components with the same id 'MPE1' can't be added to the application. I understand the error, it obvious...

ASP.NET AJAX UpdatePanel - cancelling postback in InitializeRequest will not set back to re-enabled.

Within an ASP.NET AJAX UpdatePanel on my page I have a submit button which has some custom javascript validation applied which set a global _cancelGeneralSettingsUpdate flag depending on the results of the validation. Everything works unless you enter an invalid value, correct it, and resubmit. In this case the variable _cancelGeneralS...

ajax control toolkit & sharepoint 2010

I was trying to use ajax control toolkit in sharepoint 2010, but i get some errors. I found that the last release of the toolkit doesn't work with SP2010, so i downloaded the version 30930 found at http://ajaxcontroltoolkit.codeplex.com/releases/view/33804 Then i modified the web.config adding this: <assemblies> .... <add assembly="...

supersize calendarextender

How can I resize the ajax control toolkit's calendarextender so it's touch friendly, I have modified the css properties successfully but when selecting months or years, the months (or years) overlap the days, and don't collapse after making a selection. Here is the css I'm using so far: .ajax__calendar_container {padding:4px;position:a...

AjaxControlKit Calendar Selector with SSRS

I've noticed that the items in the calendar date selection dropdown in the AjaxControlKit are not available if the SSRS ASP.Net report viewer control is directly beneath it. I had to add subsequent HTML/line spacing below it to give me the ability to select the rest of the lower dates in the control. To solve this, I added a few more ...

scriptresource.axd throws 500 error over https

Hi, I'm trying to make use of ajax control toolkit in a wss 3.0 application. It works well over http requests but over https it throws error code 500. In a https request it manages to load everything, including the scriptresources related to the ajax functionality, but not the scriptresources which is specific to the ajax control tool...

AjaxControlToolkit composite CDN

I know about AjaxControlToolkit CDN (http://www.asp.net/ajaxlibrary/CDNACT40412.ashx), but is there somewhere a file which would be a composite of all scripts used in release version. ...

Force AutoCompleteExtender dropdown to redisplay via Javascript

I have an AjaxControlToolkit.AutoCompleteExtender control attached to a textbox, and three radio buttons. When the user selects a radio button, the service method used to retrieve the values listed in the AutoCompleteExtender is changed, as follows: $("#radioButtonList input").click(function() { var selectedValue = $(this).val(); ...

NumericUpDownExtender buttons same height as the textbox.

I'm using the NumericUpDownExtender control, but my buttons on the side of the textbox are bigger then my textbox, is there a way to make the buttons the same height as my textbox? Edit: I found my problem. I was using the standard buttons, which can't be handled?. Now I've created custom ones, but they won't appear on each other, but n...

catch SelectedIndexChanged event of Accordion control in ASP.NET AjaxToolkit

I have an Accordion control that is populated dynamically. I want to catch the event raised when a new pane is clicked on to open. I don't see the event at all in intelli-sense and when I code it by hand anyways I get errors. Is there any way to catch this event? The goal is to let a control in the masterpage that is holding the Accord...

ASP.NET 4.0 with Ajaxcontroltoolkit 1.0 and system.web.extensions 1.0

We are looking into upgrading our asp.net 2.0 application to run on the 4.0 framework. We currently use system.web.extensions 1.0 and AjaxControlToolkit 1.0. We made modifications to the toolkit and so we haven't upgraded it since. When I upgrade our solution and dependent projects to 4.0 I get the "sys is not defined" error which t...

Autocomplete/Typeahead example?!?

I've got a working version of Autocomplete using the Ajaxcontroltoolkit. However, the service method signature is required to return a String[] to render the autocomplete suggestions in markup. My service actually returns an object Foo that is made up of a string Image URL and a string Title (in JSON or XML).. anyone know of a way to ha...

Auto code reformat in an aspx page VS 2008

I've never seent this before: I have an aspx page that reformats the code lines (changes the indentation, line breaks, etc) in between the opening and closing tabs tag. I'm using the AJAX tabs control. No other page does this in this app and it is only the code between the and tags. If I reformat it, whether I use tabs or spaces, IDE...

Active scripting is enabled on ie but my javascript is not showing up

I have a site created using .net and the ajaxcontroltoolkit. When some users log on they do not see the controls on the page. I can duplicate this if I disable active scripting in ie. The problem is that the users I have spoken with have active scripting enabled. I have had them navigate to a site that tests javascript and it passes. Has...

PopUpExtender on ImageButton inside GridView problem

I have GridView on my asp.net page, one column in that grid is ImageButton (TemplateField with ID="imbReserve"). On click on that button I want to show PopUp, but when I put TargetControlId="imbReserve" I get error message " A control with ID 'imbReserve' could not be found". How to achieve this, on click on button inside Grid show PopUp...

I have modified AjaxControlToolkit from original source and named as Actkit. how to use Actkit and AjaxControlToolkit in single page?

Dear friends, I want to disable past dates, so I modified AjaxControlToolkit.dll to disable past dates and named as "Actkit.dll". Its working fine. I want to use "AjaxControlToolkit.dll" and "ActKit.dll" in single page. One Textbox mapped with AjaxControlToolkit:calenderextender(need to select past date) : Not working One Textbox ma...