Tagged Questions
The ASP.NET AJAX Control Toolkit is an open-source project built on top of the Microsoft ASP.NET AJAX framework
13
votes
12answers
6k views
Should I use Google Web Toolkit for my new webapp?
I would like to create a database backed interactive AJAX webapp which has a custom (specific kind of events, editing) calendaring system. This would involve quite a lot of JavaScript and AJAX, and I ...
9
votes
7answers
3k views
ASP.NET AjaxToolKit vs other third party Ajax controls (Telerik, etc) [closed]
We have a new developer who swears by Telerik controls and would like us to purchase licenses for the entire development team (8 devs) as he feels they speed up the development process. As half of ...
7
votes
1answer
3k views
Method 'get_EnableCdn' in type 'System.Web.UI.ScriptManager' from assembly 'System.Web.Extensions' does not have an implementation
Can anyone explain a perse error like this one: "Method 'get_EnableCdn' in type 'System.Web.UI.ScriptManager' from assembly 'System.Web.Extensions, Version=3.5.0.0, Culture=neutral, ...
6
votes
3answers
10k views
Disable previous Dates in ajaxToolkit CalendarExtender
How to disable previous dates while using in ajaxToolkit CalendarExtender
5
votes
2answers
400 views
How do you manage your DojoX code?
How are you managing your usage of DojoX code or widgets in a production application?
The Dojo Toolkit is comprised of Core, Dijit, and DojoX. As an incubator for new ideas to extend the toolkit, ...
5
votes
5answers
4k views
Setting Focus with ASP.NET AJAX Control Toolkit
I'm using the AutoComplete control from the ASP.NET AJAX Control Toolkit and I'm experiencing an issue where the AutoComplete does not populate when I set the focus to the assigned textbox.
I've ...
5
votes
4answers
5k views
Have you got a CascadingDropDown working with ASP.NET MVC?
If so how?
Did you roll your own with jQuery or use the Microsoft AJAX toolkit?
Did you create a webservice or call an action?
EDIT : Please note that this question was asked before Microsoft ...
4
votes
2answers
438 views
weird Ajax ComboBox drop down list
I've got combobox inside some panel :
<ajaxToolkit:ComboBox
ID="YearList"
runat="server"
OnInit="YearList_Init1"
EnableTheming="false"
Width="45px"
...
4
votes
1answer
696 views
<ajaxToolkit:ReorderList> is not draggable in IE8 and chrome
ajaxtoolkit ReorderList is not working in IE 8.Can not drag it in IE 8.But It is working in IE 7 and Fire fox.Please help me.I want to make it to work in IE 8.That is my client requirement.I have done ...
4
votes
1answer
453 views
jQuery Autocomplete or Ajax AutoCompleteExtender
What's benefit using jQuery Autocomplete over Ajax AutoCompleteExtender? Can some one explains the benefits one over another?
4
votes
2answers
2k views
Out of Memory - Infinite Loop - ASP.NET AJAX Framework
We're running on .NET 3.5 SP1.
Recently, in IE, some of our users started getting "Out of Memory" errors once in a while. This doesn't happen all the time. I managed to replicate it a couple times ...
4
votes
5answers
12k views
How do I install and use the ASP.NET AJAX Control Toolkit in my .NET 3.5 web applications?
How do I get it to work with my project?
http://ajax.asp.net/
http://www.codeplex.com/AjaxControlToolkit/
4
votes
12answers
2k views
Best AJAX Framework [closed]
In Asp.Net web forms, what is the best chioce for providing a righ UI (a la Ajax)? I've been using the built in Ajax support that MS ships in addition to the Ajax Control Toolkit until now, but is ...
3
votes
4answers
1k views
Get selected date of ajax calendar extender control
I have used Ajax Calendar extender control (from here) in my asp.net 3.5 application.
My Question: How can i get the selected date from the Ajax calendar extender control in code behind file?
Say ...
3
votes
1answer
233 views
ASP.NET MaskedEditExtender needs to show mm/dd/yyyy when user clicks on textbox
I am using the MaskedEditExtender control for a textbox field that contains Date of Birth. I want the mask to show "mm/dd/yyyy" when the user clicks on the textbox when it is empty. Right now it ...
3
votes
3answers
567 views
ASP.NET AJAX ToolKit: Numeric MaskedEditExtender issue
I have an AJAX ToolKit MaskedEditExtender control:
<asp:TextBox ID="payRateTextBox" runat="server"
CssClass="valueControl"></asp:TextBox>
<asp:MaskedEditExtender ...
3
votes
4answers
3k views
AJAX ToolKit TabContainer: Can I capture the “Active Tab Panel Changing” event
I have an AJAX ToolKit TabContainer control with serveral TabPanels. I want to validate the contents of the current active TabPanel to prevent user from working on other ones in case data was invalid.
...
3
votes
3answers
5k views
AjaxToolkit IIS7 Asp.Net 4.0: Sys is not defined; handler mapping issue?
I have moved my asp.net 3.5 app to asp.net 4.0 and moved from windows 2003 (iis6) to windows 2008 r2 (iis7.5) and now i have this sys is undefined error.
i have the app running in an integrated ...
3
votes
3answers
882 views
disable browser autocomplete for ajax:AutoCompleteExtender
I'm using the .net ajaxtoolkit control AutoCompleteExtender. It works great but my firefox autocomplete overrides the values that the extender is returning (the firefox one lays on top of the ...
3
votes
3answers
613 views
My ASP.NET Accordion will not animate panel changes when triggered by check boxes
My accordion panel in markup:
<ajaxToolkit:Accordion
ID="MyAccordion"
runat="server"
SelectedIndex="0"
HeaderCssClass="accordionHeader"
HeaderSelectedCssClass="accordionHeaderSelected"
...
3
votes
1answer
217 views
Can somebody explain the differences, status and future of the various ASP.NET AJAX libraries and toolkits?
I'm confused about the differences and relationships between the various Microsoft ASP.NET AJAX components/libraries/toolkits and particularly the naming of them.
It starts off relatively simple with ...
3
votes
2answers
6k views
Only one instance of a ScriptManager can be added to the page
I had an ASP UpdatePanel to update a gridview which worked fine, now I wanted to also use AjaxControlToolkit for some of the controls in there, but after wiring up everything when I run I get an error
...
3
votes
6answers
7k views
'AjaxControlToolkit' is undefined Error
I am using the AjaxControlToolkit in VS2005, and it works fine. I do have some issues though, when I go to some pages I have, then click back, I get this javascript error:
'AjaxControlToolkit' is ...
2
votes
2answers
44 views
ASP.NET trying to compile commented lines of code. Why?
I have code like this on some aspx page in WebApplication:
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<asp:ScriptManager ID="ScriptManager1" ...
2
votes
0answers
124 views
ASP AJAX toolkit sliderextender with overflow:auto scrolling the page down in Chrome
I am using the ASP.NET Ajax toolkit slider extender inside a div which has a fixed height and set to overflow:auto. This is because I have numerous sliders in a table, and if the list gets very long ...
2
votes
1answer
97 views
Pop up disappears when a img button in clicked (ASP.NET Ajax control tool kit)
<Columns>
<asp:TemplateField HeaderText="Edit Controls" ItemStyle-Width="15%">
<ItemTemplate>
...
2
votes
1answer
65 views
Change the calenderextender default date
I have FROM DATE and TO DATE in a web form both are using the ajax calenderextender. When users select the FROM DATE and I want to default the TO DATE calenderextender date to FROM DATE +2 days. Is ...
2
votes
2answers
165 views
CSS Display: None & JS .show() break JQuery and AjaxToolkit Date Pickers
So, I created a tabbed interface using java script, jQuery, and CSS in which I simply call .show() and .hide() on div's that contain a tab's contents. All of which works perfectly fine; however, one ...
2
votes
2answers
138 views
Positioning tabs in TabContainer
I'm working with ajaxtoolkit:TabContainer.
I need to add two tabs (which i can do) but i need one of the tab headers in the far left and the other in the far right.
I've been playing with CSS ...
2
votes
1answer
2k views
Update Panel animation extender with multi update panel
Q:
I use Update Panel animation extender
,, it works so good but unfortunately
,,when i have more than update panel
on the same page and any partial post
back for any update panel on the ...
2
votes
3answers
755 views
AjaxControlToolkit's AsyncFileUpload misbehaving when deployed online
In case it matters, the following is inside a toolkit popup, which has an update panel in it.
<p>
<asp:Label Text="Picture" runat="server" Width="75"></asp:Label>
...
2
votes
3answers
481 views
AjaxToolkit for 3.5 not working
I am trying to use ajaxtool kit downloaded from here for colorpicker.
When i tries to use this on any of my page, it shows me an error
This page is missing a HtmlHead control which is ...
2
votes
1answer
74 views
Drawbacks of KSS
Has anyone here used KSS?
KSS is an AJAX framework.
KSS has both a client-side Javascript library and server-side support.
The client-side Javascript library needs to be included in your ...
2
votes
5answers
889 views
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. ...
2
votes
1answer
458 views
In-Place editing using Asp.net ajax
I am looking for a way to perform in-place editing on my webforms app. Here is a link for this behaviour using scriptaculous: http://wiki.github.com/madrobby/scriptaculous/ajax-inplaceeditor)
I am ...
2
votes
2answers
1k views
AJAX Toolkit AutoCompleteExtender with a *PAGE* service?
I have an application currently using the AJAX Toolkit AutoCompleteExtender to extend a textbox. It is using a webservice to select and retrieve the data. The docs for the toolkit say that you can ...
2
votes
5answers
3k views
JQuery Ui or AjaxControlToolkit?
I´m building an asp.net app, which technology I should use to get AJAX capabilities?
And why ?
By now I only need to use a Confirmation button into a gridview, but possible more features will be ...
2
votes
5answers
950 views
Embeded Flash in asp.net accordian performs poorly
I'm using the ajax toolkit accordion extender and I notice it performs a little "funky" when I try to embed some flash in the content sections.
You can see what I have working now at : ...
2
votes
3answers
2k views
AutoCompleteExtender control in a repeater
I have an AutoCompleteExtender AjaxControlToolkit control inside a repeater and need to get a name and a value from the web service. The auto complete field needs to store the name and there is a ...
2
votes
2answers
4k views
ASP.AJAX TabContainer/TabPanel Customisation
Is it possible to set the position of the tabs to be at the bottom of the tabcontainer using the AjaxToolkit? You do have some control over the CSS but I'm not au-fait enough with CSS to see whether ...
2
votes
1answer
10k views
ASP.NET AJAX nested updatePanel modalPopup funkiness
It seems that in some cases, if you end up with nested modalPopups wrapped with updatePanels (not ideal I know, and should probably be refactored, but that's what we're working with because of how ...
2
votes
6answers
6k views
How do I prevent the closing of modal popup window(ModalPopupExtender) on postback?
I'm using Microsoft AjaxControlToolkit for modal popup window.
And on a modal popup window, when a postback occured, the window was closing. How do i prevent from the closing action of the modal ...
2
votes
3answers
3k views
Uncollapsible CollapsiblePanelExtender
I have a CollapsiblePanelExtender that will not collapse. I have "collapsed" set to true and all the ControlID set correctly. I try to collapse and it goes through the animation but then expands ...
2
votes
2answers
446 views
Minimize javascript HTTP calls from AjaxControlToolkit controls?
I love the ease that the ASP.NET Ajax control Toolkit provides to ASP.NET developers. However, I've not found it to be a scalable solution at all. I have a page with 2 date input fields. By putting a ...
1
vote
1answer
31 views
How to change the visibility of CascadingDropDown control
What is the preferred method to change the visibility property of a .NET AjaxToolkit CascadingDropDown control? I would like to render the control "invisible" when a null value is returned from a ...
1
vote
1answer
22 views
Unknown server tag 'ajaxToolkit:CalendarExtender'.
I get this error when trying to use the latest ajaxToolKit NET4.
I've downloaded it, extracted it as described in the instructions and selected the dll in the toolkit and its loaded ok.
The code ...
1
vote
1answer
43 views
Display modified confirm on the button submit from button action
Hi I am using an ajax confirm button like so and when the button is clicked instead of seeing ConfirmText="Are you sure you want to click this?" I want it to display my text passed from the code ...
1
vote
1answer
206 views
AjaxToolkit:ComboBox + AjaxToolkit:ModalPopupExtender — The ComboBox dropdown list cuts off… how to fix?
Basically, I've got the following:
.AjaxComboBoxWindowsStyle
{
position: relative;
}
.AjaxComboBoxWindowsStyle .ajax__combobox_inputcontainer .ajax__combobox_textboxcontainer, ...
1
vote
0answers
86 views
undefiend font and size in HtmlEditorExtender?
I am using HtmlEditorExtender in aspx page.
In editor Font and (font) Size drop down shows fonts and font sizes but other then these fonts and sizes it also shows many items with text Undefiend.
Any ...
1
vote
2answers
153 views
Ajax Accordion issues in firefox/chrome
I have an accordion with 2 pane. The thing is if I set it to autosize="Limit" and selectedindex="0", when load the first time, in IE 9, it works perfectly fine but in firefox/chrome, the size of the ...