We have a datagrid that gets updated when the user clicks a node in a tree
(or moves through it using arrow keys).
We're handling the change event in the tree to issue the update request.
A request has come in that clicking an already selected node should do a
refresh.

We tried having both change and click handlers, where the click handler
would check if the selection was unchanged. But that didn't work because the
change event fires first so the selection reported a click time is always
the same.

Any suggestions?

Reply via email to