Questions tagged [kendo-autocomplete]

An auto-complete UI widget for html5 in the Kendo UI Web product.

Autocomplete is a Kendo UI () component.


Related tags

100 questions
2
votes
1 answer

Kendo Autocomplete not posting to Server

I am a bit stumped as to why my Kendo Autocomplete is not posting to the server. Can anyone see a problem with this? @(Html.Kendo().AutoComplete() .Name("LinkSearch") .Filter("contains") .MinLength(3) .DataTextField("value") …
Gaz Winter
  • 2,924
  • 2
  • 25
  • 47
2
votes
1 answer

Kendo Autocomplete Displays Two Suggestion Lists

My Kendo autocomplete control retrieves a Json list successfully. Unfortunately, it calls the MVC controller method twice and creates two suggestion lists. The duplicate list is displayed directly behind the first. When a value is selected from the…
2
votes
2 answers

Why is my Kendo AutoComplete widget not binding to a JSON object?

I have the following code in an MVC controller: public JsonResult ARequest() { Dictionary AnObject = new Dictionary(); AnObject["foo"] = new object[] {"item 1", "item 2", "item 3"}; return Json(AnObject,…
Lincoln Bergeson
  • 3,301
  • 5
  • 36
  • 53
2
votes
1 answer

how to give a kendo ui autocomplete widget with multiple values, the css functionality of a kendo ui multiselect widget

I am wondering if there's an easy way to have the multiselect widget's css functionality shown in this demo http://demos.kendoui.com/web/multiselect/index.html applied to an autocomplete widget.
user1221271
  • 65
  • 4
  • 10
2
votes
1 answer

update text of kendo autocomplete with selected item text instead of dataTextField

i am using kendoAutocomplete,Everything is working fine but the problem is that i am searching with dataTextField :"stname" but in template i am showing "label" with is combined with stname and some other value.I need to search with stname only .it…
Gurmeet
  • 3,094
  • 4
  • 19
  • 43
2
votes
1 answer

KendoUI Autocomplete template using tables

I'm trying to change the HTML rendered by the Kendo UI autocomplete MVC helper, but it seems Kendo has hard coded it to be a UL. Here's my code sample: @(Html.Kendo().AutoComplete() .Name("clientsAutoComplete") …
Jacques
  • 6,936
  • 8
  • 43
  • 102
2
votes
1 answer

Kendo autocomplete not showing results

I'm trying to add a simple autocomplete to my page that will show the available numbers. I can see the call back to the controller and the list is populated in the controller but nothing is displayed on the front-end. I've looked at the response in…
Mithrilhall
  • 1,485
  • 8
  • 33
  • 52
1
vote
1 answer

How to use JSON data with kendoAutoComplete

I'm learning to use Kendo with jQuery. I have downloaded a sample Kendo UI from their website and am adding an autocomplete widget for employees which needs to be sourced from 'employees-list.json' I have successfully implemented the autocomplete…
Frankie
  • 79
  • 5
1
vote
0 answers

Angular Kendo-Autocomplete add search icon

We have an kendo auto complete search box as shown below I need to add a search icon inside the search box, I have checked the documentation but I couldn't find any information. I'm have also tried adding
1
vote
1 answer

Kendo AutoComplete search() method not working

I am using the Kendo AutoComplete widget with a minLength of 4. However, if the user clicks a "GO" button I want to force the search to execute before the minLength is reached. The line where search is called executes without errors while debugging …
1
vote
1 answer

Kendo autocomplete truncates selected value

I am trying to use the Kendo autocomplete component and I keep getting this grey bar that obscures part of the answer when it is selected. Does anyone know who to fix this issue? See my code below:
done_merson
  • 2,800
  • 2
  • 22
  • 30
1
vote
1 answer

how to use if-then-else in kendo template

I am using UI for ASP.NET Core. I have configured autocomplete widget with customized the header & item template like below @(Html.Kendo().AutoCompleteFor(x => x.AccountNumber) .DataTextField("AccountNumber") .DataSource(source => …
LP13
  • 30,567
  • 53
  • 217
  • 400
1
vote
2 answers

Kendo ui - How to attach select event for kendo mvvm autocomplete field to the viewModel

Is there a straight-forward way to define a "select" event handler function within the mvvm html attributes for a kendo autocomplete field? For example, here is a working version of an autocomplete field using a jquery…
1
vote
2 answers

Disable filtering in kendo ui autocomplete

How to disable filtering in kendo autocomplete UI? I am getting 5 records on search but only matching records are shown in autocomplete popup even though I haven't used filters. scope.autocompleteOptions = { dataTextField: 'description', …
Kiran Pawar
  • 322
  • 1
  • 2
  • 16
1
vote
0 answers

Unique values in kendoAutoComplete

$('#Name).kendoAutoComplete({ dataTextField: "customerName", filter: "startswith", dataSource: orderModelDS.ordersSource }); This is the code where I am using autocomplete as a custom filter on a kendoGrid. In the dataSource there…