So, I create such nodes ...
var nodes = new vis.DataSet([ {id: 1, label: 'Peter'}, {id: 2, label: 'John'}, {id: 3, label: 'Sally'}, ]);
and then in the event handler after clicking on node I get the node identifier that I clicked. How do I get a node object from its identifier?
srayner
source share