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…
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…
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…
I have a Kendo Autocomplete item :
--------------------------------------------------------------------------
$("#Ac_Transporteur").kendoAutoComplete({
dataTextField:…
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:…
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…
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…
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.
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…
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…
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…
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…
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…
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…