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;
},
<Grid
:id="tableId"
:data-items="items"
:resizable="resizable"
:columns="displayedColumns"
:pageable="pageable"
>
<Grid>
computed: {
pageable() {
return {
buttonCount: 5,
info: true,
type: 'numeric',
pageSizes: [5, 10, 25, 50],
previousNext: true,
pageSizeValue: this.pageSizeValue,
messages:{
itemsPerPage: 'rows per page',
}
};
},
}
Hi everyone,
I'm having some problems with pageable configuration in kendo native grid. In pageSize I have this array [ 10, 15, 20, "all" ] but when I click on "all" it doesn't work and says "No records available". Do you have an example of this kind of implementation? I've tested in 2.1.2 and 3.4.4 versions.
Thanks a lot.