Skip to main content

Lately I’ve been needing to run actions after a component is rendered in order to run an action/snippet.


A recent use case was to calculate the % of opps each agg by stage row represented in the drawer. I worked around it using the value of the row in context since it had the total number of opps I needed to calc each stage’s %.



My current use is to add level 2 drawer tables to an array of visible tables in order to create my own custom sticky headers which will duplicate the current rows headers and additional level information. The pic below would additionally display “David LastName - Capital Placed / Additional Possible” just above or below the floating header when the current row doesn’t show it’s header.



My work around for this is set a timeout on the row action that adds the drawer elements in order to able to target them after render. Works fine except for an additional time delay for the UX.

BUMP