Is it possible to prevent the user from clicking (selecting) a parent node, but still allow selection of any children. Or ideally change the behaviour of the parent node to expand / collapse the node. The current behaviour of the DropDownTree is that all children are selected, and I don't want this, only a single (child)node should be selectable
So in the example below, the user can select on Apple, Orange etc, but not Fruit / Vegetable
- Fruit
I have the native TreeView component and I am wanting to scroll a pre-defined node into view. I do not see any methods available on the component that allows me to do so, and I do not see any documentation around this particular issue.
Outside of me using DOM selectors to find the node and force the container of the tree to scroll to it, does Kendo provide a method or guide for how to achieve this?
I can't get v-for to work. is there any way to dynamically draw a GridColumn with a columnList?
Here is the code that I failed with
<Grid :data-source="tableData"
:selectable="'multiple cell'">
<GridColumn v-for="column in columns" :key="column.field" :field="column.field" :title="column.title" />
</Grid>
<Grid :data-source="tableData"
:selectable="'multiple cell'">
<template v-for="column in columns" :key="column.field">
<GridColumn :field="column.field" :title="column.title" />
</template>
</Grid>
In the native grid for Vue, how to lock a custom column with resizable=true, which will cause two problems. One is that although the grid header can be locked, the underlying data is not locked. The other is that when changing the column width of the locked column, styling issues will occur when moving left and right. You can see the specific case below:
I'm looking at the official documentation for dragging and dropping TreeView elements here: https://www.telerik.com/kendo-vue-ui/components/treeview/api/TreeViewDragAnalyzer/
The drag hint icons in the example always show the cancel icon even when the drag and drop is valid and works.
The Angular example works as expected. It's only the Vue example that seems broken.
Hello!
How do I add this zoom feature?
Hello,
I'm building a form where a field may become optional depending on a check box. I've set some validator on the field, but if I check the checkbox, the validators remain active on the field. Is there a way to dynamically attribute validators to a field ?
I try to disable the field, but even with the field beeing disabled, the validators are still working.