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
9
votes
5 answers

Bind ID as Value with Text in Autocomplete

I am using Kendo Autocomplete, In that I am filling the Text and also using that text parse data, But I want to use ID as Value to send it on server side on Form Submit. I am using this Kendo Editor But Can't able to Bind the "CustomerID" as the…
Rahul
  • 2,309
  • 6
  • 33
  • 60
7
votes
1 answer

Kendo UI Angular JS and AutoComplete with a service

I'm making an Angular App and I'm starting to use some of the Kendo UI controls. I'm having some issues wiring up the AutoComplete control. I would like to use a factory that will return the list of "auto complete" values from my database. I have…
pehaada
  • 513
  • 2
  • 8
  • 20
6
votes
3 answers

Autocomplete Kendo Control I don't want to show "No Data found" when no matching records

I have a autocomplete kendo control which I use with Angular, its working as expected but I don't want to show the "NO DATA FOUND" list when there are no records match the text that the user enter. I find the option k-no-data-template but this set…
mbadeveloper
  • 1,272
  • 9
  • 16
5
votes
4 answers

Get selected object in Kendo Autocomplete

I have a Kendo Autocomplete item : -------------------------------------------------------------------------- $("#Ac_Transporteur").kendoAutoComplete({ dataTextField:…
Axel GALLIOT
  • 157
  • 2
  • 2
  • 12
4
votes
1 answer

What purpose does jQuery's .data() function serve in the Kendo UI?

On this website--Kendo UI's Autocomplete widget documentation--there's a piece of code that I only partly understand. $(document).ready(function() { var autocomplete = $("#customers").kendoAutoComplete({ minLength: 1, dataTextField:…
Lincoln Bergeson
  • 3,301
  • 5
  • 36
  • 53
3
votes
1 answer

Kendo UI MVC Autocomplete server filtering after user stop typing

I am using Kendo UI autocomplete in my asp.net mvc application, Kendo autocomplete callbacks the server method on each key strock which over heads the server requests. Is there any way to manually callback the server using autocomplete to get the…
Hiren Kagrana
  • 912
  • 8
  • 21
2
votes
1 answer

Kendo autocomplete with multiple keywords

I'm actually doing a Kendo Autocomplete. But I have some problems. Like in this post Autocomplete with multiple keywords, I want to have multiple keywords. But seems impossible to me to do that with the Kendo Autocomplete, I tried a lot of solutions…
2
votes
3 answers

How to disable kendo grid filter Icons in angular 2?

I am using kendo grid for displaying data, [filterable]="true" in web page showing filters, but i want hide only filter icon button. i tried css but it is not working. can you please help me on that.I tried bellow code but not working.
2
votes
1 answer

Selenium sendKeys and clear doesn't work on Kendo Autocomplete field in Safari 11

While coding an automation test in Selenium-Ruby when sendKeys / clear is used on a Autocomplete text field (Kendo UI) in Safari browser 11.0.1, Test…
2
votes
2 answers

Kendo Ui AutoComplete - How to change default filter "startWith" to "contains"?

My application built with AngularJs and KendoUI controls. I used AutoComplete Text Box so many places in the application. Now client wants that search should be with "Contains" filter. for the same i need to put filter: 'contains' everywhere…
Snehal
  • 1,070
  • 12
  • 20
2
votes
1 answer

Custom filtering/sorting logic in Kendo Autocomplete

I can set a "startswith", "contains" or "endswith" filters for Kendo Autocomplete control, according to the docs: The filtering method used to determine the suggestions for the current value. The default filter is "startswith" - all data items…
2
votes
1 answer

How to set with on kendoAutoComplete

I have tried every way I know how (and failed) to properly set the width on a kendoAutoComplete. My latest attempt (below) is JS based, but I've also tried numerous CSS solutions. The issue I'm seeing is that no matter the width I choose, the actual…
James Hill
  • 60,353
  • 20
  • 145
  • 161
2
votes
1 answer

Kendo datasource change read url on request start

I am currently doing this to change the read url dynamically on my kendo datasource. The datasource is used for a kendoautocomplete text box and for each key typed the list of suggestions are fetched through a get request. requestStart: function…
2
votes
1 answer

AutoComplete control calling controller with null value

I'm trying to use the Kendo UI Autocomplete control with server filtering, but have run into a problem. While my callback function appears to pull the correct text from the form, it consistently passes a null to the controller method. I can't see…
2
votes
1 answer

Kendo UI AutoComplete (MVC) MinLength reloads all values

I have a Kendo UI autocomplete using the MVC helper: @(Html.Kendo().AutoCompleteFor(m => m) .DataSource(dataSource => dataSource.Read(read => read.Action("CustomerNames_Read", "Wells"))) .DataTextField("Name") .MinLength(3)) The…
pfeds
  • 2,183
  • 4
  • 32
  • 48
1
2 3 4 5 6 7