I've been looking through GXT3's Tree
API for some way to execute an action when I click or double click on a node in a tree, and I can't seem to find anything that would work.
I know TreeGrid
has a CellClickHandler
and CellDoubleClick
handler, but there doesn't seem to be anything similar for Tree
. There's the generic addHandler
method inherited from Widget
but this seems like it would apply to the whole tree, not a specific node.
Is there something I'm overlooking, or a different / better way to do this?