I have a grid with an array of buttons that when clicked, will display a popup window that collects user info. What I'd like to do is position the popup relative (immediately below) the button that the user clicked within the grid - not necessarily centered on the current window.
How can I get access the position/coordinates of the calling button - is this data somehow available via the createComplete event of the popup. I imagine this data is buried somewhere in the event/eventtarget object, but I'm not quite sure how to access it. (Please don't tell me that I need to assign a listener to every button in the grid from within the Popup window as I'm creating the grid dynamically and it varies in size). Can anyone help with this, TIA, Patrick