ajaxcontroltoolkit

ASP.NET + ModalPopupExtender + Click Event

Hello, I have an ASP.NET application that is using ASP.NET AJAX. I am using the ASP.NET AJAX Toolkit to present a dialog to a user. When the user clicks 'Yes' in the dialog, I want to handle that event in the code behind. However, I noticed that my click event is not being reached. Here is the main code: <asp:Panel ID="dialogContinuePa...

Problem with UpdateProgress

Hi everyone, I have a project and i´m using "UpdatePanel" with "UpdateProgress" , it is working fine... Now i have to show for user Steps of The Processing into UpdateProgress. My idea is change the Text of one Label for each step of Processing inside the template of update progress I using a C#, ASP.NET, FW 3.5, ASP.NET AJAX Cont...

Microsoft Ajax Control Toolkit vs. jQuery

Hi, we are currently developing a couple of custom asp.net server controls. Now we'd like to add some Ajax support to some of them. Now basically there would be two options Microsoft Ajax & Microsoft Ajax Control Toolkit jQuery I worked already with the Control Toolkit, writing a complete Extender and it was quite intuitive, once yo...

Content Template within an UpdatePanel

Hi, When I try to include both td definitions in one content template within one UpdatePanel I get the error below: Error:Sys.InvalidOperationException: Could not find UpdatePanel with ID 'ctl00_schoolAdmin_UpdatePanelSchoolAddress'. If it is being updated dynamically then it must be inside another updatepanel' " I have had to now spli...

ASP.NET AJAX’s Combobox - Use HTML Tags in list entries

I'm using the new Microsoft ASP.NET Ajax Combobox control. But I want to use HTML-Tags for formatting in the DropDownlist. It renders to <ul> and <li> and not to <select> and <option>, so it should be possible. My Control looks like this: <act:ComboBox ID="cbxCompany" runat="server" Width="180" AutoCompleteMode="Append" CssClass="Co...

AsyncPostBackTrigger isn't working with simultaneous update calls

I have a page with some UpdatePanels, each one with its own button to update it. Since the update routines can take some time, I thought making them Asynchronous would help loading the page step by step. But doing so, when I fire programatically the update routine of each panel, I get only the last UpdatePanel updated. Here is an examp...

Combining scripts - Toolscript manager vs CompositeScript in 3.5

I've been using the toolscriptmanager included in the AjaxControlToolkit on my site. This one has a CombineScript attribute that tells the scripmanager to combine the necessary scripts from ajax controls into one single script file. However, since 3.5, the standard scriptmanager has support for "<CompositScripts>" where you can combine ...

How to enter text in AJAX HTML Editor using watin

Hi, I could not figure out how to enter text into HTML Editor using Watin. I tried //ie.TextField(Find.ById("htmlDetail_ctl06_ctl04")).TypeText("ABCD"); But got error: Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus. Can you give some example how to enter text into AJAX...

CSS Help - How can a DIV ignore css previously set on the page?

I am using AjaxControlToolkit CalendarExtender. Some previous rule in my stylesheet is affecting div's within the calendar. div#paymentRegion div { float:left; width:49%; } There are DIVs within the calendar that are being forced to 49%. How can I have the calendar ignore the previous settings and use the styles that come wit...

Ajax tab extender control on tab click

Hello, I am using Ajax tab container control with 3 tabs. I have placed a user control in each of the tabs. All the 3 controls on getting loaded on page load. How do I refresh the Tabcontainer on click of each tab. The reason I need this is, In the userControl that is in the 1st tab, I am hiding some controls based on a buttonclick. ...

Disabling Ajax Cascading Dropdown

I have 4 Ajax Toolkit cascading dropdowns on my page. Under certain conditions on load I set the selected values on the first 2. I now want to disable the first 2 dropdowns in these conditions so they still function but the user cant change the selected value. I've tried setting enabled to false on the dropdown box but it seems the Cas...

ASP.NET AJAX Toolkit: AutocompleteExtender: How to add suffix character to a selection?

I would like to add the delimiter after the selection after it is selected. Say, if I select "beautiful", then it will add "beautiful; " into the textbox. ...

How do I find the my version Number of MS ASP.NET AJAX Control Toolkit ?

I know I am not running the most up-to-date version of ACT on my server. (I tried to update it recently and it broke a bunch of things.) So I want to use a control that I have never used before and I need to look at the reference for the control to be sure I'm using it correctly. But I dont know the exact version I am running. Where ca...

ASP.NET AJAX and JQuery issue

I have an ASP.NET page using the AJAX control toolkit for some controls. A recent update is looking for some more dynamic "flair", and it was recommended I look into jQuery to add some of the functionality. My issue lies here: When I add the jQuery reference (see below), I get a javascript error when the page loads: "this._form is null ...

change HeaderTemplate of AJAX toolkit TabContainer

Hi Guys, I have a Tab Panel which has a text Upcoming Birthdays and i run a query to find if there are any upcoming birthdays and bind them to a datalist. so i want to show the count of birthdays as Upcoming Birthday(1) or Upcoming Birthday(2) but i cant find any way from code behind to do this my tab index is 2 and even if i do this ...

AjaxControlToolkit PopupExtender in JQuery

Hi, We are in the process of migrating our ASP.NET application to use Jquery instead of AjaxControlToolkit. We use the popup extender quite extensively in our application. I was wondering if there exists a plugin in Jquery that does what the AjaxControlToolKits's PopupControl does. (It opens a popup window to the Center, Left, Right, T...

ASP.NET AjaxControlToolkit Combobox - Disallow insert of items

I want to use the new combobox control of the Ajax control Toolkit. But I need it only for selecting an entry of a given list. The user should not be able to insert own items into the list. How to prevent this? The ItemInsertLocation seems to have no value to set this behaviour. ...

ASP.NET AjaxControlToolkit change Combobox content dynamically per Ajax

If I understand it right the new ACT ComboBox Control is Bound once to a given Datasource. But the count of the records I want to bind is very large. So I want to load the content of the ComboBox List via Ajax after the user typed in a few charachters. So at page load the combobox list should be empty and if something is typed in the lis...

ASP.NET PopupControlExtender Problem

I am trying to create a popup which will be used to select a month/year for a textbox. I have kind of got it working but however when I try and read from the textbox when I Submit the form it returns an empty string. However visually on the page I can see the result in there when I click the Done button which can be seen in the screensho...

ASP .NET - AJAX Control Toolkit ValidatorCallout not working on edit template

I have a page that has a listview that is used for inserting and editing records. Assigning a RequiredFieldValidator and ValidatorCallOutExtender to the InsertItemTemplate works well. When I try to do the same on the EditItemTemplate the ValidatorCallOut appears but with no text in the box. Is there something that I'm doing wrong? My co...