I have a scenario where I am “enhancing” a Syncfusion grid column with aurelia templates. because syncfusion directly manipulates the DOM I had to rely on using CompositionEngine.compose to create Aurelia components when needed. This works great and it’s been in use for over 2 years and production for 10 months.
I was extending functionality when I realized my detached() functions were not being called. I got around this by keeping references to my created components and looping through them to dispose of them correctly when the grid rows change.
My question is, what is the correct way to deal with this components that are created outside of the regular view pipeline. I know I can call unbind()
, detached()
on the viewSlot
, but is there something else I’m missing on the CompositionContext
Is setting properties to null good enough?