I want to show a grid for my custom editor with sorting functionality. I'm able to use Popup and reference the grid row td. Since GridCell isn't generic I can't define my own state so I've resorted to using class properties to store the data & sort order instead. This works but the grid isn't re-rendered on sort unless i .forceUpdate(). When I do that I lose my reference to my anchor point.
Do you think in the future GridCell extends could define their own state? Do you think allowing them to be generic might make sense?
Is there a way to prevent my Popup from losing its positioning?
Working example: https://next.plnkr.co/edit/AynMBNvtloQ881qt
Thanks!