I need to place custom dropdown component inside a custom table component.
The dropdown can sometimes appear outside the table’s bounds and the table has overflow:hidden.
I need the dropdown position to be set dynamically based on the cell it is in.
However I cannot give the dropdown a position:absolute because it would be clipped by the table.
It needs to have a position:fixed.
I try binding something like : context.thisInstance.getBoundingClientRect()
but I am a bit stuck as it often returns 0 because the value is set before the data is populated in the table. therefore the dropdown displays at the wrong place.
Thanks for your insights!
