Unplanned
Last Updated: 31 Oct 2019 15:33 by David

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();
    }
}

Unplanned
Last Updated: 03 Apr 2024 20:07 by ADMIN
Created by: Muhammad Jamil Nawaz
Comments: 1
Category: AutoCompleteBox
Type: Bug Report
0

Hi,

We have a problem in our application, where when the user is typing the text to the input field of auto completed. After pressing "@" the text starts shaking. I tried to reproduce the same issue with online demo.

https://demos.telerik.com/aspnet-ajax/autocompletebox/examples/functionality/rendermodes/defaultcs.aspx

Use render mode Classic.

https://www.loom.com/share/1d67206ea642465d88a01606687fd042?sid=584b1dcd-c5da-45b1-80b2-8297e78d1239

In the render mode Lightweight, the text is always shaking but in the Classic render mode, when the "@" typed, the text is shaking. 

The customer reported this as production issue in our application. Please suggest the solution of this asap.

Regards,
Jamil

Unplanned
Last Updated: 28 Jul 2016 14:26 by ADMIN
Occasionally, instead of a single request the controls will make multiple requests to the service.
Completed
Last Updated: 01 Aug 2016 15:54 by ADMIN
Declined
Last Updated: 31 Oct 2014 13:52 by ADMIN
Hi There,
I do have a basic question regarding RadAutoCompletyeBox , the question is  If the  RadAutocompleteBox does not find  the data that is typed to the text box what event will fire to say there is no data returned . Please can you guide me on this?
1 2 3