ajaxcontroltoolkit

How can I optimize the Microsoft AJAX Toolkit?

This is rather infuriating. I'm trying to optimize a very large site, and I'm at the step of reducing HTTP Requests. Microsoft is not cooperating. I have the following ScriptResources included. I'll try and grab a top-line for each to distinguish them // Name: MicrosoftAjax.debug.js 53.5Kb // Name: MicrosoftAjaxWebFo...

Make postback when the OkButton in a ModalPopup is clicked in ASP.NET AJAX

I follow the example in Atlas: Creating a Confirmation Using the ModalPopup Extender to make a postback when the OkButton in a ModalPopup is clicked (it uses the ModalPopupExtender that comes in ASP.NET Ajax Control Toolkit), but as I can see, the Sys.WebForms.PostBackAction() is no longer present in ASP.NET AJAX (the example is for Atla...

Setting active tab in ASP.NET Ajax TabContainer causes entire container to disappear

I have an ASP.NET page that uses the ASP.NET Ajax Control Toolkit TabContainer. In the Page_Load event, I am hiding some of the tabs based on the data given to the page. I then want to make one of the tabs active based on the value of an (optional) query string parameter. So I have: protected void Page_Load ( object sender, EventArgs e...

Javascript error in Firefox when using ASP.NET AJAX Control Toolkit

I have recently been building a website that utilizes the .NET Framework 3.5 SP1 and the AJAX Control Toolkit. The standard AJAX controls such as UpdatePanel work without problem. As soon as I add a CollapsiblePanelExtender control from the AJAXControlToolkit to the page I receive a Javascript error. (NOTE: this problem occurs on Firef...

Collapsible Panel in ASP.NET

Hi all, I am using the ASP.NET AJAX Control Kit and I am having a problem using a collapsible panel in my code. I have the following code: <table><tr> <td class="bg"> <a class="bg" href="javascript:void(0);"> <asp:CheckBox runat="server" ID="chkSMSGrossRevenue" Text="Gross Revenue (Daily, Monthly, Yearly)" /></a> <asp:Panel...

Telephone number is not displaying correctly in ajax control toolkit mask?

I have the following telephone number 866-234-5678. I have an asp textbox and I am applying the following mask: <cc2:MaskedEditExtender ID="maskPhone" runat="server" ClearMaskOnLostFocus="false" AutoComplete="false" MaskType="None" ...

MS Ajax Toolkit now on backburner?

The reason for the title is the last update of the toolkit happened on August of 2008. http://ajaxcontroltoolkit.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=16488 Is Microsoft not interested in supporting this product anymore? I just found a nasty bug that caused 2 days of hair pulling that should have been fixed years ago rega...

Events for HTMLEditor control in ASP.NET AJAX Control Toolkit?

I'm using the HTMLEditor control from the ASP.NET AJAX Control Toolkit. Works fine. I'd like to hook a keyup (onkeyup) event so that I can do things like display an (approximate) running count of the number of characters in the editor. I've deduced that the editor is ultimately a textarea element inside an iframe element. I am able to a...

ASP.NET DataGrid and HoverMenu Extender

I have an ASP.NET DataGrid that I am trying to add a HoverMenu Extender to. The grid markup is as follows: <asp:datagrid id="dgrExisting" runat="server" autogeneratecolumns="false" cssclass="FormattedTable" onitemcommand="dgrExisting_ItemCommand" onitemdatabound="dgrExisting_ItemDataBound"> <headerstyle cssclass="Format...

Putting ModalPopupExtender in a constant location

I've got a series of ModalPopupExtenders that I'm using to implement popup dialogs on an ASP.NET 2.0 page. When they popup it's fairly easy to specify the location where they appear using the constructor using X and Y coordinates but I'm unsure how to deal with changes of window size which alters where they should be in cartesian space....

ASP.Net Onclick event doesn't work with ajaxcontroltoolkit

Hi guys, I designing a web application using vs2008 and c#. I already have done many versions of it and all of them seems to be working fine. Yesterday i decided to replace de vs calendar with a ajax calendar and to do so i used ajaxcontroltoolkit. The new calendar is also working fine. But the buttons i have in my form stoped to work...

Advanced usage of Ajax Control Toolkit MaskedEdit Extender

How can I achieve the following with the Ajax Control Toolkit MaskedEdit extender? Letter + Any number of numeric chararacter such as Z234, Z235, Z24, etc ...

What is the best way to remember tab selection with the .NET TabContainer?

This is what i am currently using to remember the state but wonder if there's a better way to do this? <script language="javascript" type="text/javascript"> function readCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for(var i=...

ASP.NET AJAX Control Toolkit: Show a ModalPopup and then do PostBack

Hello. I want to show a modal popup when a user click on an asp button. The user must select an option of a panel. The value of the option selected must be saved to an input hidden and then the asp.net button must do a PostBack. Can I do that? Thank you! ...

ASP.NET AJAX Control Toolkit: conditional ModalPopup

Hello! I need to show a modal popup if the user has selected a treeview's node on a specific depth. Is there any way to show a modal popup on a conditional way? Thank you! ...

CollapsiblePanelExtender

I have two panels and I use CollapsiblePanelExtender control to collaps and expand one of them.what I need is to change the size of the second control when the first is collapsed . how I can do that? ...

Problem with ajax modal popup extender

Hi, I am facing a problem while displaying two modal popups. Scenario goes like this: I display one modal popup on the button click.I have another button inside this modal popup. When I click on this button, I display another modal popup. Now the problem is that, when I display the second popup, the first popup is still clikable. What...

How to extend the Ajax control toolkit

hello, ive seen some pages that offer new ajax animations.. can i use those in .NET?? if not, how do you create new ajax animations for .net? ...

Hide Textbox Targeted by the ColorPickerExtender

Is there a way to hide the textbox that is targeted by the colorpickerextender in the newest release of the ajax control toolkit? If you add style="display:none" to the textbox, then the color picker shows up in the top left corner of the browser window. I want it to show up near the button that is referenced in the extenders popupbutto...

Issue with modal popups

Hi, I have two modal popups on my page. One of these popups have buttons on it. When the popup with buttons is displayed and I click button on this popup, then the second popup gets displayed. I want that popup should not be visible. Why is this happening? Any inputs will be highly appreciated. ...