Kostiantyn

Results 70 comments of Kostiantyn

* _Support for Async search_ - nothing will be shown for now * _Loading scope to override the existing loading bar_ - I had thought about it. It will be...

It will not work out all the problems through the configuration. The main idea is using several approaches to solve the problems: * CSS. * [API](https://amsik.github.io/liquor-tree/#Tree-API) * Slots + `data`...

Hi. You have 2 ways to get the destination: - https://amsik.github.io/liquor-tree/#Drag-amp-Drop - use `dnd` options: ```javascript const opts = { dnd: { onDragStart(node) { console.log('onDragStart', node.text) }, onDragOn(targetNode, destinationNode) {...

https://github.com/amsik/liquor-tree/issues/47

Hi! Destination node must be. Either target node added inside or beside. You have the 3th argument to detect the drop position. They should not be the same. Could you...

Hey, It possible. * You can use `onDragStart` callback to prevent dragging (ex see https://github.com/amsik/liquor-tree/blob/master/demo/pages/dnd.html) * To return to the node, you can use https://amsik.github.io/liquor-tree/#Tree-append-criteria-node

Hi! Yeah. ```javascript const node1 = this.$refs.tree.find('node 1') node1.recurseDown(node => { if (node.checked) { node.uncheck() } }) ```

Yes. I don't have time to fill the documentation... :( Or you can aks here :)

Hi. You can check the official example link (https://github.com/vuejs/vue-class-component/blob/master/example/src/App.vue). For instance you can override `Hello` component to `liquor-tree`.

You can use `node:checked ` event and check whether parent node checked