Mike Mabey wrote: > Okay, I just figured out that there is no onHit() method for dTreeView. How > can you tell when an item has been selected in the list? Or rather, what > event fires when an item in the tree has been clicked?
The TreeSelection event occurs when an item is selected. http://paul.dabodev.com/doc/api/dabodoc/dabo.ui.uiwx.dTreeView.dTreeView.html#Events_TreeSelection Look at evt.EventData in the event handler: you can get a reference to the node that was selected from there. It is either evt.EventData["selectedNode"] or evt.EventData["itemNode"]. Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
