Topic: Node's "selected" property in JSON description
Hi moro,
Currently in the example files there's "expandTo" property of a node:
var json=[
{
"property": {
"name": "root"
},
"children": [
{
"property": {
"name": "node1",
"expandTo": 1
}]
}While this works and is extemely useful, I'd still like to have one more property of a node, that will select it after the render. After all, in most cases when you are "expanding to a node", you are also selecting it.
Can you introduce "selected" property as shown below:
"children": [
{
"property": {
"name": "node1",
"expandTo": 1,
"selected": true
}]Thanks,
Temuri