Popup Placement

Hello,
I wish to place a popup adjacent to a particular column of a datatable. Using this.getItemNode() on the row ID allows me to place it relevant to the first column of the row using the node with the $$(win).show( node, { pos:"right"}) . Is there a cleaner way to place the popup near the desired column as opposed to attempting a physical offset to “push” it closer?
Thanks for any pointers or guidance
-SrvrSide

try to use getItemNode with cell address as argument

var node = $$("mydatatable").getItemNode({ row: 2, column:"title"});
$$(win).show( node, { pos:"right"});

Perfect - Thank you very much Intregal
-SrvrSide