This situation only happens on page reload, but not on navigation. Wasn't it supposed to be at least available inside onMount? ```jsx export function MyGrid() { let gridRef console.log('gridRefA:', gridRef) onMount(() => console.log('gridRefB:', gridRef)) setTimeout(() => console.log('gridRefC:', gridRef), 100) return <AgGridSolid ref={gridRef} /> } ``` // outputs gridRefA: undefined gridRefB: undefined gridRefC: Object { api, .... }
Activity
thedanchez commentedon Feb 3, 2025
@hugomcm yeah, this seems like a bug to me based on your description. When the view is mounted I would expect the ref to be assigned for sure.