I'm using the Grid Wrapper, I can't for the life of me figure out how to do a template column?
..or like binding to a WCF date to convert to something readable
**EDIT**
Got it with the column data API bindings
Hi I have a grid using: https://www.telerik.com/kendo-vue-ui/components/grid/filtering/filter-menu/
I have several filters by columns, how can I change the title?
In the image you can see my grid, for example in the first filter I need the title to be different from the second, how is this possible?
I have been able to successfully bind a Vue ref array to the first listbox control's data-source property successfully. I am also able to use the toolbar controls to move items back and forth between two listbox controls. I am not able to bind a Vue ref array for selected items on the second listbox control. I am also unable to get the "add" and "remove events to invoke my handler functions. Please advise on how to get the selected values that are present in the second listbox control. In the example below, how do I get "Name 2" out of the second listbox control?
Thank you for your help
Hello.
I implemented the kendo ui grid vuejs.
I have a question, how it's possible "sticky" the Expand column?
I have other columns "sticky" and works fine, but the "expand" column (master details) don't keep sticky. and i need to hide the "menu filters" in this columns too
Thanks in advance
Hi,
I want to use new notification Vue Notification Component & Overview | Kendo UI for Vue Docs & Demos (telerik.com) from kendo-vue-notification package. How I can implement autohide feature? I need to show the result of a operation but user doesn't have to close notification.
Thanks
Pavel
I would like change the culture of my grid component but I don't know how to do this.
I try to follow this example but it doesn't work -_-
Kendo example :
https://www.telerik.com/kendo-vue-ui/components/grid/globalization/
The the format number don't work ... The number disappear...
My try :
How can I change the culture into the grid component ? :-)
Hello,
I am trying to follow along the examples in the docs, and I have tried to create a TreeView that has collapsible nodes, and checkboxes.
I am encountering some strange issues, such as:
Since this is pretty basic behavior, I am sure I have misconfigured something or I am entirely missing something.
Can you provide some help ?
You can find a sample here: https://stackblitz.com/edit/vue-qzba9x?file=src/App.vue
pageable() { return { buttonCount: 5, info: true, type: 'numeric', pageSizes: [10, 15, 20, 'all'], previousNext: true, }; }
pageChangeHandler: function (event) {
this.skip = event.page.skip;
this.take = event.event.value === 'all' ? 1000 : event.page.take;
},