My kendo-datasource have transport-read: GridDataSource , and in a same page i have input field to collect input number , when ever i keein in the input field each key in time GridDataSource function also getting called , it should not happen for me . any idea ?
<input
:name="'challanno'"
:disabled="!isEdit"
v-ec-disabled="!isEdit"
:ec-type="'text'"
v-model="challanno"
v-ec-validate="{required: true}"
v-ec-validate:fieldName="'Challan no'" />
<kendo-datasource ref="maingridsourcenew"
:type="json"
:transport-read="GridDataSource"
:batch="false"
:server-paging="false"
:server-sorting="false"
:page-size="10"
:schema-model-id="'_id'"
:schema-model-fields="schemaModelFields"
:schema-data="'data'"
:schema-total="'total'">
</kendo-datasource>
GridDataSource(ev) {
console.log("testinggrid---------->")
ev.success({
data: [],
total: 0
});
},

I was glad to hear, that the new release supports Vue 3. So I just started building a new app with Vue 3 TypeScript and wanted to use the Native Kendo Controls. But I have problems to set things up. With Vue 2 and JavaScript I had no problems with Kendo. But now it seems just not to work.
I also cannot find any documentation on that topic. It would be realy disapointing if it is missing. Maybe I'm just blind.

The API docs show icon-class as the method for custom icons on the button wrapper - https://www.telerik.com/kendo-vue-ui/components/buttons/api/button/Button/#icon-class
I cannot get this to work - is this possible?

Hi, i'm new to kendo and i'm trying to create a filterable grid with a grid native component. Everything works well BUT i'm stuck with the full list of operators (contains, begins, is not null,...).
Is there an easy way to customize the list of operators ? I will probably only need "begins" and "is equal to".
I saw that with the grid-wrapper I could define a list with the property "filtterable" but it doesn't seem to work with grid native. I got an error saying that Filterable could'nt be assigned with an object.
Thanks a lot !


Hi,
I have over 20 columns in the native grid and seeking a possible implementation to achieve freeze panes similar to what excel offers.
I have a native DatePicker that I am using in an application with many components that use the Kendo wrapper validation widget. I am trying to get the behavior and appearance of the DatePicker to match that of the existing components. Validation should occur when a field loses focus and an invalid field should have a red outline and red error message below it. I tried to use the native DatePicker validation functionality, but I was unable to make validation consistent with all of the other components.
I am able to use the Kendo wrapper validation widget to perform validation when a field loses focus and display an error message, but I have been unable to get a red outline on an DatePicker in the invalid state. How can I accomplish this?
See https://stackblitz.com/edit/esiptm for an example.

Hello All,
In vue js how to achieve at a time only one row expanding in Kendo Native Grid.
Please give the needful demo example

Hi,
Our app uses vue 2.6.12 in our package.json
I tried to update the kendo vue version to the latest one reported by npm - but it fails with a dependency of vue 3.
Can you tell me what is the latest npm version of the kendo-vue wrappers that does not require vue 3?
