Shouldn't I be able to pass option attributes to a Grid (Any widget) without binding?
<kendo-grid>
server-filtering,
server-paging,
etc
</kendo-grid>
Also the Column filterable attribute is generating a warning when I pass it an object (Says Boolean only). Can you please add Object to the filterable prop.
Is it possible to access a method that was created in the Vue.JS methods with the Telerik grid, in this case a click action?
template: "<div><button @click='showClient(#:id#)'>Show Client</button></div>"
methods: {
showClient (id) {
console.log(id)
this.$router.push('/client/:id')
}
}
output render in HTML
<td role="gridcell"><div><button @click="showClient(720)">Show Client</button></div></td>
Hi,
By using the Kendo validator on a modal window (kendo-window) containing some required fields, I've got this issue:
I saw that there is a validateOnBlur option that I need to be enabled but it is used only when the field lose its focus. Is there a way to fire the validation event while the user is typing or changing the field data? It would fix that problem because the modal window will be resized before the user can click on the save button.
I am using the VueJS Wrappers.
Thanks