AJAX Control Toolkit - May 13, 2009 Release (30512)

A new version of the AJAX Control Toolkit is now available for download from the CodePlex website (click Downloads above). This new version of the AJAX Control Toolkit contains three new controls:
  • HTMLEditor - The HTMLEditor control allows you to easily create and edit HTML content. You can edit in design mode, as a rich text editor, or in source view to edit the HTML markup directly. Many thanks to by Obout http://www.obout.com for building this.
  • ComboBox - The ComboBox control provides a DropDownList of items, combined with TextBox. Different modes determine the interplay between the text entry and the list of items.Many thanks to Dan Ludwig for building this.
  • ColorPicker - The ColorPicker Control Extender can be attached to any ASP.NET TextBox control. It provides client-side color-picking functionality with UI in a popup control. Many thanks to Alexander Turlov for building this.

The ASP.NET website has been updated with new videos http://www.asp.net/learn/ajax-videos and tutorials http://www.asp.net/learn/ajax for these controls. Visit http://www.ASP.net/ajax to view all of the new tutorials.

This new release also includes fixes for over 20 bugs in existing AJAX Control Toolkit controls.

Many thanks to all contributors to this release, and in particular to Bennett Adelson Consulting, Inc., OBOUT Software, Inc., Dan Ludwig and Alexander Turlov.

Last edited Jun 3 at 5:01 PM by aturlov, version 4
Comments
leda May 15 at 3:04 PM 
Where can I find a list of the bug fixes?

mhdbsm May 27 at 12:25 PM 
thanks for your efforts

MarioMajcica Jun 5 at 2:30 PM 
Is there a list of bug fixes? TNX

bryansmith Jun 19 at 10:33 AM 
I love this control toolkit, thanks for the enhancements and bug fixes

SMuhilan Jul 14 at 12:16 PM 
When I placed ajaxtoolkit combobox in a tabpane of tabcontainer, the drodownbutton and drop down list display are display. Here is my code.


<form id="form1" runat="server"> <asp:ScriptManager ID="scriptManager1" runat="server"></asp:ScriptManager>

<div> <ajaxToolkit:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="1"

Height="228px" Width="400px">

<ajaxToolkit:TabPanel ID="tabpane1" runat="server" HeaderText="tab1"> <HeaderTemplate> Tab 1</HeaderTemplate>
<ContentTemplate>

<br />
<ajaxToolkit:ComboBox runat="server" ID="ComboBox1" MaxLength="100" AutoCompleteMode="Suggest" >
<asp:ListItem Text="ABC" Value="ABC"></asp:ListItem>
<asp:ListItem Text="XYZ" Value="XYZ"></asp:ListItem>
</ajaxToolkit:ComboBox>
</ContentTemplate>
</ajaxToolkit:TabPanel>
<ajaxToolkit:TabPanel ID="TabPanel2" runat="server" HeaderText="Tab2">
<HeaderTemplate>
Tab 2
</HeaderTemplate>
<ContentTemplate>
<br />

<ajaxToolkit:ComboBox runat="server" ID="ComboBox4" MaxLength="100" AutoCompleteMode="Suggest" <asp:ListItem Text="ABC" Value="ABC"></asp:ListItem> <asp:ListItem Text="XYZ" Value="XYZ"></asp:ListItem>


</ajaxToolkit:ComboBox> </ContentTemplate></ajaxToolkit:TabPanel> </ajaxToolkit:TabContainer>
</div>
</form>



The drop down in the second tab is not showing properly. Its button and lists not showing when I click this tab from first tabe.

Updating...
© 2006-2009 Microsoft | About CodePlex | Privacy Statement | Terms of Use | Code of Conduct | Advertise With Us | Version 2009.10.27.15987