How to calculate a cell value that depends on other cells in the same row that are populated async?
I have a table who's cell values are calculated asynchronously. Each cell has a component which takes cares of fetching the correct data based on the accessor key. I'm now trying to add in other columns which don't do anything other than take some of those cell values and do some math on them, for example: There is a budget and a revenue column who's render value gets populated asynchronously. I want to add in a "ROI" column that should display the result of (row.revenue / row.budget) * 100. I've tried using info.row.getValue("budget") and ..("revenue") but they are undefined. The ROI cell should somehow be told to wait for the other cells to populate before rendering. Is this possible with the current API?