Completed
Last Updated: 24 Mar 2023 14:42 by ADMIN
Release R1 2023 SP1
ADMIN
Created by: Bozhidar
Comments: 2
Category: AutoCompleteBox
Type: Feature Request
7
Instead of the control expanding vertically to accomodate all entries, they should be positioned on a single line.
Completed
Last Updated: 22 Nov 2022 22:32 by JeffSM
Release R1 2020
Created by: David
Comments: 2
Category: AutoCompleteBox
Type: Feature Request
2
Instead of having the property to select single or multiple it would be more productive to have a property called SelectCount and we can enter the amount of listings to be selected. If its a single I select 1... for multiple I select how many I need. No more need for the Single/Multiple property except for backward compatibility.
Completed
Last Updated: 24 Jun 2022 13:31 by ADMIN
Completed
Last Updated: 22 Jun 2022 10:20 by ADMIN
Completed
Last Updated: 21 Jun 2022 22:24 by ADMIN
Declined
Last Updated: 06 May 2022 12:41 by ADMIN
Created by: Rui Lopes
Comments: 1
Category: AutoCompleteBox
Type: Feature Request
1
In your page http://www.telerik.com/help/aspnet-ajax/autocompletebox-onclientrequestfailed.html you only have one message to show to the user, why not return de http status code?

In this moment the workaround suggested by your team is:
<script>
    Telerik.Web.UI.WebServiceLoader.prototype._onWebServiceError = function (error, context)
    {
        var errorEventArgs = new Telerik.Web.UI.WebServiceLoaderErrorEventArgs(error.get_statusCode().toString(), context);
        this._raiseEvent("loadingError", errorEventArgs);
    }
 
    function OnClientRequestFailed(sender, args) {
        console.log(args.get_errorMessage());
    }
</script>
Declined
Last Updated: 06 May 2022 11:39 by ADMIN
Declined
Last Updated: 20 Apr 2022 15:43 by ADMIN
ADMIN
Created by: Nencho
Comments: 2
Category: AutoCompleteBox
Type: Feature Request
5

			
Unplanned
Last Updated: 14 Jun 2021 15:38 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 1
Category: AutoCompleteBox
Type: Feature Request
4
Based on customer feedback: there should be a property that limits the maximum height of the input of AutoCompleteBox.

Once that height is reached, a scrollbar should appear.
Unplanned
Last Updated: 27 May 2021 20:08 by ADMIN
Created by: Eli
Comments: 0
Category: AutoCompleteBox
Type: Feature Request
0
It would be helpful if there was a built in way for a token to be a linked item.  This could be done through an ItemTemplate or a NavigateURL property on an Entry.
Unplanned
Last Updated: 29 May 2020 14:26 by ADMIN
Currently, when the InputType=Text and AllowCustomEntry is set to true, the AutoCompleteBox does not persist the value of the entry when an item from the dropdown is chosen. 
Completed
Last Updated: 15 Jan 2020 08:39 by ADMIN
Release R1 2020
Completed
Last Updated: 07 Jan 2020 11:01 by ADMIN
Release R1 2020
Created by: Rick
Comments: 3
Category: AutoCompleteBox
Type: Feature Request
1
RadAutoCompleteBox needs a Delay option to delay the retrieval of data while user is typing - in milliseconds.
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: 28 Oct 2019 21:02 by Jeff

https://demos.telerik.com/aspnet-ajax/autocompletebox/examples/accessibility-and-internationalization/wai-aria-support/defaultcs.aspx

While JAWS will announce all of the items in the list as results are first read, it only says "Blank" as you arrow through the available options. Tabbing out of the control and back in, also does not read the selected content.

This is basically the opposite of what happens when ARIA support is turned off.

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

In that case, there is no announcement when results come back, but JAWS will read each individual item as you arrow through the available choices. Tabbing out of the control and back in still does not cause JAWS to read the selected item. 

This makes it seem like the ARIA version of the autocomplete box is missing either the appropriate ARIA roles or some other piece of rendered markup that is present in the non-ARIA-enabled version.

 

Ideally, when working with screen readers,  we would like to see something like the following behaviors:

* The number of items are announced when results are loaded, including empty results

* Each item is announced as the focus is moved through the list

* The selected item is announced when picked or whenever focus returns to the field. 

Completed
Last Updated: 06 Sep 2018 07:42 by ADMIN
Error message: "Unable to get property 'get_index' of undefined or null reference"

Video: https://www.screencast.com/t/SmoOmyopjOJg

Steps to reproduce:
1. Open http://demos.telerik.com/aspnet-ajax/autocompletebox/examples/default/defaultcs.aspx

2. Search for item in the Tone-enabled AutoCompleteBox

3. Choose an item from the result

4. Delete the token

5. Press Backspace

Result: A JS error is thrown:

"Unable to get property 'get_index' of undefined or null reference"
Completed
Last Updated: 09 Jul 2018 12:47 by ADMIN
A workaround is to disable the embedded jQuery and use an older version (for example, 1.11.1 which is the previous version the suite used): https://docs.telerik.com/devtools/aspnet-ajax/controls/scriptmanager/disabling-the-embedded-jquery

Repro steps:

- add the dropdown
- write something

expected: you see the suggestions

actual: the suggestions go off the screen to the left



        <telerik:RadAutoCompleteBox ID="companyNameSelector" runat="server"
            EnableDirectionDetection="true" EnableScreenBoundaryDetection="true" DropDownWidth="400px"
            Width="200px">
        </telerik:RadAutoCompleteBox>



    protected void Page_Load(object sender, EventArgs e)
    {
        companyNameSelector.DataTextField = "someColumn";
        companyNameSelector.DataSource = GetDummyData();
        companyNameSelector.DataBind();
    }



    protected DataTable GetDummyData()
    {
        DataTable tbl = new DataTable();
        tbl.Columns.Add(new DataColumn("id", typeof(decimal)));
        tbl.Columns.Add(new DataColumn("Name", typeof(string)));
        tbl.Columns.Add(new DataColumn("moreData", typeof(decimal)));
        tbl.Columns.Add(new DataColumn("someColumn", typeof(string)));
        tbl.Rows.Add(new object[] { 1, "one", 2, "firstRecord4" });
        tbl.Rows.Add(new object[] { 2, "two", 3, "secondRecord4" });
        tbl.Rows.Add(new object[] { 3, "three", 4, "thirdRecord4" });
        tbl.Rows.Add(new object[] { 98, "four", 5, "fourthRecord4" });


        return tbl;
    }
Completed
Last Updated: 20 Jun 2017 14:50 by ADMIN
1 2 3