Finding list item, table cell, tree node, or control by location
973901Nov 18 2012 — edited Nov 18 2012One of my favorite features about swing was the ability to get a UI component reference via Container.getComponentAt(int x, int y), or a particular list item via JList.locationToIndex(Point p) (or other similar methods). I haven't been able to find the same or similar functionality in JFX so far... can someone point me in the right direction?
Thanks!