Browser autocomplete/autofil not working for dropdownlist when entering address

0 Answers 113 Views
DropDownList Editor General Discussions
Jordan
Top achievements
Rank 1
Iron
Jordan asked on 27 Mar 2023, 01:26 PM

I am not able to get the State dropdown menu to work with the browser autocomplete for address using Kendo control.     See the screenshot below.

I have tried several versions but I am using a very, very simple drodpown for testing and it will not autocomplete:


@(Html.Kendo().DropDownList()//(m=>m.State)
                     .Name("state")
                     .BindTo(new List<SelectListItem>() {
                new SelectListItem() {
                    Text = "AL",
                    Value = "AL"
                },
                new SelectListItem() {
                    Text = "AK",
                    Value = "AK",
                }

            })
            .HtmlAttributes(new {style = "width: 100%", @class = "autocomplete-input"})
                                                .DataTextField("Text")
                                                .DataValueField("Value"))


 

Jordan
Top achievements
Rank 1
Iron
commented on 10 Apr 2023, 04:24 PM

@Telerik - any idea?

No answers yet. Maybe you can help?

Tags
DropDownList Editor General Discussions
Asked by
Jordan
Top achievements
Rank 1
Iron
Share this question
or