I have an AutoCompleteBox that cuts off the last letter of the default message.
This only happens on load and in Mozilla FireFox.
After the user focuses the AutoCompleteBox and loses focuses the full default message is available.
It seems that this is related to the inability of FireFox to handle the size property of the input elements. On initial load, the input is sized by setting the size property of the input.
A possible workaround would be calling the internal _updateInputSize method in the OnClientLoad event of the AutoCompleteBox:
function
OnClientLoad(sender, args) {
if
(Telerik.Web.Browser.ff) {
sender._updateInputSize();
}
}