I've creted a Grid that uses a custon cell template for a number of columns.
I'm now trying to implement incell editing, following the example in the documentation, but the @cellclick event is not triggering when I click on a cell that uses a custom template.
How can I get the @cellclick event to fire?
You can see this issue in the documentation for the Filter Row.
You need to type really slowly into the filter field for the correct text to be applied. This is probably something to do with filtterchange being triggered immediately -- the input os not debaoiunce and there's no option for an 'Apply' button.
In the Native Components grid of kendo ui for vue, how can I customize the group title and bind events to it? For example, I need to select all the items under a group when the group title is clicked. How can this be achieved?
I've been using Kendo UI for jQuery for several years and I'm now in the process of migrating to Kendo UI for Vue. Mostly things are going well, but there are certain things that seem massively over complicated.
I want to customize the group header cells. There doesn't appear to be a way of providing a slot name like you can for a normal cell. The example given in the documentation seems rediculously over complicated.
Surely there's a simpler way to customise a group header cell, in a similar way to how a cell can be customised with a slot and template?
Hi!
I would like to know how it would be possible to export base64 from the `save` function when exporting from a component.
this.$refs.gridPdfExport.save(itemsToExport);
The default behavior is to just download a pdf, I dont want this functionality.
Thanks!
Unfortunately, due to bandwidth constraints I'm currently stuck on Kendo Vue Native 3.14.2.
I've tried to update my Vue version to 3.4 or 3.5 but I see in the changelog that this will break the NumericTextbox component:
Changelog - Kendo UI for Vue - Kendo UI for Vue (telerik.com)
Is there maybe a workaround possible so that I can still use Kendo 3.14.2 and Vue 3.4+ at the same time?
Or could this fix (from v4.3.2) maybe be backported to a special 3.14.2 version?
Thanks in advance
Hi, I am using vue3.
I want to make a choice, not a focus.
Is there a way?
:value allows you to select a date, but no other date.
:views="2"
:focusedDate="today"
:allowReverse="true" >
HI,
I want to erase the 'MultiSelect' data by pressing the button.
If I put:value in a multi-select
There is an error in the following parts.
Except for :value, everything is fine.
I followed the code in url below.
https://www.telerik.com/kendo-vue-ui/components/dropdowns/multiselect/binding/
The tagList in multiselect has an error
TypeError: Cannot read properties of undefined (reading 'toString')TagList.js
How to customize the editing task page for Gantt, like this
Hello,
I am attempting to implement the Kendo Vue Editor for text editing. All of the tools in the toolbar work great, besides the drop down options. Specifically: font size, font name, font color, format, background.
When highlighting text, they do not update. When making a selection in the drop down, nothing happens, and no events fire.
I have all needed packages installed that are listed on the getting started page https://www.telerik.com/kendo-vue-ui/components/editor/get-started/
I have tried:
Here is the component:
</template>
} from '@progress/kendo-vue-editor'
}
defineProps<EditorPropsExtended>()
const emit = defineEmits(['update:modelValue'])
}
]
Edit: Grammar, added component