AlbertP
AlbertP
I had to edit handleSingleSelectItems method from tree.vue and compare the item id that I had to supply for each item like this: ``` handleSingleSelectItems(oriNode, oriItem) { this.handleRecursionNodeChilds(this, node =>...
The same problem. React native version: 0.61.5 if that helps. I think it happens only in development environment when app reloads.
Install visual studio with desktop development with C++
I'm having something similar. If I set disabled to true I would expect that the state of the checkbox doesn't change. or with an empty function maybe ?. ` {}}...
I fixed it, in the method _onChange added a check for disabled prop: `_onChange() { if(!this.props.disabled) { const newVal = !this.state.checked const { onChange } = this.props this.setState({ checked:newVal },...