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")
…
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…
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,…
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.
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…
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")
…
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…
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…
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
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 …
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:
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 =>
…
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…
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',
…
$('#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…