The MaxLength property on the ComboBox is ignored. If I copy and paste a character repeatedly into the ComboBox it stops me at 5 characters like it's supposed to. But if I just type characters from the keyboard it does not stop me at 5 characters.
<act:ComboBox ID="cmbName" runat="server"
DataSourceID="odsNameItems"
AutoCompleteMode="SuggestAppend"
DropDownStyle="DropDown"
Width="250px"
ValidationGroup="vgInsert"
TabIndex="8"
MaxLength="5">
</act:ComboBox>
Comments: This issue is fixed with release June 2012.
<act:ComboBox ID="cmbName" runat="server"
DataSourceID="odsNameItems"
AutoCompleteMode="SuggestAppend"
DropDownStyle="DropDown"
Width="250px"
ValidationGroup="vgInsert"
TabIndex="8"
MaxLength="5">
</act:ComboBox>
Comments: This issue is fixed with release June 2012.