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
0
votes
1 answer

How can i customize message display in kendo grid?

when searching in kendo autocomplete, the initial text is 'no data found', i want to remove or change to 'searching'. If no records found then it can be show, worst case, i want to set to blank? I am developing in angular 2 and typescript. i am new…
0
votes
1 answer

kendo ui autocomplete - set data on load

I have a textbox for which I added kendoAutoComplete function. This is working fine. However, I wanted to set some value to this textbox upon the page load (I get the value from DB). With KendoAutoComplete, I am unable to set this. I can either…
0
votes
1 answer

kendo-ui mvc autocomplete does not display results

I was able to get a working version using the js version dojo autocomplate but I need it to work using the MVC version. I added DataSourceRequest in the controller as suggested below and changed a couple more items that got rid of the js error I was…
Will Lopez
  • 2,089
  • 3
  • 40
  • 64
0
votes
1 answer

Kendo UI Autocomplete event when the suggestion list doesn't open yet

I'm using Kendo UI Autocomplete select. I want to handle some cases where the input value doesn't match the suggested ones so the dropdown wouldn't show up. For example when my list contains : values=[1xx,2xxx,3xx,4x,5xx] When the user insert some…
Ahmed Chebbi
  • 9
  • 1
  • 1
  • 8
0
votes
1 answer

KendoUI autocomplete server filtering with .net Core and no odata

I'm trying to implement server filtering in a .net Core mvc web app. MVC core does not support Odata out of the box and i cannot implement it. Autocomplete seems to send query filtering along the request for data as a querystring. The querystring is…
billy jean
  • 1,399
  • 4
  • 25
  • 45
0
votes
0 answers

KendoUI AutoComplete show cross icon with selected text

Is it possible to configure the selected option from KeondoUI Autocomplete? I am looking forward to display the text with an cross icon, so when the user clicks on cross the value is removed from the autocomplete box. The code below from schema is…
AaBa
  • 451
  • 1
  • 6
  • 21
0
votes
0 answers

Part of the text missing when ng-submit

In my current project, I have an input which is a kendo-auto-complete element. I have a category data source and when I type the categories will be visible from where I can select. Also I can type a new category name in the text box and enter, it'll…
Mujahid
  • 1,227
  • 5
  • 32
  • 62
0
votes
1 answer

Kendo Autocomplete doesn't bind model

I try to bind a object in the Kendo Autocomplete widget. the trouble is that the model turns in a string when i fill the options, and when i change the scope the input show me the text [object object] because the model isn't a string. is a object…
0
votes
0 answers

Kendo Grid Autocomplete selected id while creating new item

Is it possible to get selected id for autocomplete is Kendo Autocomplete, or does it just return the value or selectedtext. I am trying to use kendo grid along with auto complete. Everything is ok, however I am not sure how to get selected id, it…
genericuser
  • 1,430
  • 4
  • 22
  • 40
0
votes
1 answer

How to get top(n) from kendo AutoComplete client side when filtering

I have the below autocomplete set to static dataSource $("#search").kendoAutoComplete({ dataTextField: AutoCompletedataTextField, filter: "startswith", ignoreCase: true, pageSize: 10, dataSource: tempArray, }); I need…
Wael Joulani
  • 167
  • 2
  • 4
  • 14
0
votes
2 answers

Access the column field name from the columns.filterable.cell.template function in Kendo

Because I'm using a lot of kendo grids spread in the whole web app, I start to introduce some redundant code that causes me a lot of troubles. Imagine to have something like: //MVC: ... columns.Bound(c => c.Column1).Filterable(f =>…
Stefano Magistri
  • 1,130
  • 1
  • 11
  • 18
0
votes
2 answers

How to create custom controls and adding new events to that control using kendo controls?

How to create custom controls in kendo-ui? For example kendo has AutoComplete Control. Using that I want to create my own "myAutoComplete" with all the events provided by kendo as well as some external events. The reason is kendo provides very…
bagya
  • 383
  • 1
  • 11
  • 38
0
votes
1 answer

Angular Js directive for Kendo Autocomplete - wont bind result to parent controller

I have a repeating Autocomplete control througout an MVC web app I am building. I decided to use Kendo's Angular Autocomplete tool - because we also use their calendar and dropdownlist controls (FYI - handy for large lists - as allows a search…
dalcam
  • 1,027
  • 11
  • 28
0
votes
2 answers

How can I delete a few characters from kendoautocomplete box

I have location autocomplete textbox. After selecting the location I want to delete some part of that location but not the entire location. Example: My location is 154, I want to make it to 15. How can I do this? $("#locations").on("keydown",…
Rajesh Choudhary
  • 219
  • 3
  • 13
0
votes
0 answers

kendoAutoComplete doesn't load all elements at the initial stage

I have a auto search box.It initially load elements after type some thing.Is there a way to load all elements without typing anything in the text box. My code is like this. @Html.TextBoxFor(model => model.PurchaseOrderItemModels.ProductName, new…