nodeSelectListener will only trigger if the node is previously not selected. If a node is already selected, and we press the same node again, the listener will not be called. how to overwrite this so that every single click even on the same node will fire nodeSelectListener?
nodeSelectListener will only trigger if the node is previously not selected. If a node
Share
You can’t do it via that particular listener, because (by design) the select listener only fires when the node was not previously selected. See this bug report for a discussion of it. You want an onclick handler instead.