ajaxtoolkit

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 some of the user controls we wanted to re-use were written), when you fire a postback that should open the nested modalPopup, instead it close...

UpdatePanelAnimationExtender - Resize not working

Hi, This is the page that I'm having. But the resize part in the section does not seem to be working. I copied most of the code from the Ajax site. I placed a alert() in the tag (line 108) to find the value of 'b._originalHeight' and it shows up as '44'. I have also tried the code in the above-said tutorial (line 132) and that did not...

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 and I found that this code, from the AjaxControlToolkit.Common.Common.js file, was causing an infinite loop: AjaxControlToolkit.TextBoxWrapp...

Using the same asp panel in multiple tabs

In the Ajax toolkit you can use a Tab Container and add TabPanels to this. I have some controls that I want to be able to use across all tabs and the tailor the tabs with other controls as neccessary. My question is how do I reuse a panel on multiple tabs? Essentially I after something like this <TabContainer> <tabPanel1> <contentT...

Nice Labels with X in To Field of Compose Message?

In Facebook's Compose Message, each name that appears in the TO field uses a nice LABEL with an X. Click on the X, and you remove name from the To sender field. I see this same feature again in other web2.0 social networking apps. Are there open source tools that let me make those nice X LABELS after you click on the autocomplete list...

Problem with Prototype's AJAX.Request function.

I'm trying to create a POST request, unfortunately the body of the POST never seems to be sent. Below is the code that I'm using. The code is invoked when a user clicks on a link, not a form "submit" button. It runs without error, invokes the servlet that is being called but, as I mentioned earlier, the body of the POST never seems to...

dropdownextender Ajax tool kit

How to implement in dropdownextender to go to the selected item by keyboard or go to items starting with 'A' when i press 'A' on my keyboard, i need it work as a normal drop down control. good reference i got from it good ideas: http://www.dotnetcurry.com/ShowArticle.aspx?ID=167 ...

Which ajax control toolkit version?

If I'm using Visual Studio 2008 targeted to ASP.NET 2.0, then which version of the Ajax Control Toolkit should I be using? ...

Why is the PopupControlExtender generating a full postback inside an UpdatePanel?

I have a button inside an updatepanel. I have a PopupControlExtender linked to the button so when the button is clicked a panel pops up. It works fine except it does a full postback and I can't figure out why. The button and the PopupControlExtender is inside an update panel which inside the ContentTemplate tag. When I take out the Popup...

Control Reuse and UpdatePanel

I have a user control that is pretty basic. It contains several TextBox controls, a few DropDownList controls, a save Button and a cancel Button. I would like to use this control in two different modes. The first mode is in the normal postback mode to do the save and cancel actions. The second mode would use AJAX to do the save and cance...

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 it's feasible? Thanks ...

Control amount of Javascript Ajax Control Toolkit spits out

with the Ajax Control Toolkit, one can easily drag and drop all types of great extender onto controls, but they register a boatload of Javascript to do it. 1) how do control this. and 2) If the scriptmanager is in the masterpage, is there anyway to control the loading of a script on one page that isn't in another? for example: calendar e...

ASP.NET AjaxControlToolKit Accordion set active pane via javascript

I would like to be able to change the active pane of an accordion using javascript. I see a behavior set_SelectedIndex but I can not seem to get it to work. How can I find out what the supported methods are for this control? How can I set the selected index from the page? ...

How to use the TabContainer control inside a templated FormView?

Is it possible to use a TabContainer inside a templated FormView like so: <ItemTemplate> <cc1:TabContainer ID="TabContainer1" runat="server"> <cc1:TabPanel ID="Tab1" runat="server"> <HeaderTemplate>Tab One</HeaderTemplate> <ContentTemplate> ...

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, DojoX code and widgets are functional with varying degrees of instability. DojoX Code like QueryReadStore (for fetching batches of data from...

Vanishing scroll bar when using Autocomplete extender

Hi I use the Autocomplete extender feature to get the list of suggestions from my database. There is no scroll bar for this control, so I have added a scroll bar in a panel (MS .net 2.0) which i attach to my autocomplete extender.Now the issue is with the srcoll bar. like this <asp:Panel ID="autocompleteDropDownPanel" runat="server" ...

< ajaxToolkit:TabPanel - would like to set "focus" on a different tab

i have a < ajaxToolkit:TabPanel initially when the page loads, the first tab is "open" ("focused on") can i do something (preferably server side) so my second tab would be the "default" selected tab? ...

Javascript Error thrown by AjaxToolKit in .NET only on some machines

We have a button that saves asynchronously using AjaxToolKit/C#/.NET. I'm getting this in my Error Console: Error: [Exception... "'Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from ...

ASP.Net Ajax: How to add a custom control to the asp.net 2.0 toolbox from its DLL

I have a MS AJAX toolkit DLL which I want to add to the toolbox items as a tab. How do I go about in doing this? ...

What is the best option for creating an in-browser UI-editor?

I want to create an simple UI-editor that can be used within the browser. It basically should have a UI-control palette and a canvas to layout and modify the controls. The resulting user-created UI model should be stored in some kind of backend and comply to an (abstract) UI description language (e.g. XForms). The UI-model should be down...