AfterRenderPhase
The phase to run an afterRender or afterNextRender callback in.
enum AfterRenderPhase {}
EarlyRead
Use AfterRenderPhase.EarlyRead for callbacks that only need to read from the
DOM before a subsequent AfterRenderPhase.Write callback, for example to perform
custom layout that the browser doesn't natively support. Prefer the
AfterRenderPhase.EarlyRead phase if reading can wait until after the write phase.
Never write to the DOM in this phase.
Using this value can degrade performance. Instead, prefer using built-in browser functionality when possible.
Write
Use AfterRenderPhase.Write for callbacks that only write to the DOM. Never
read from the DOM in this phase.
MixedReadWrite
Use AfterRenderPhase.MixedReadWrite for callbacks that read from or write to the
DOM, that haven't been refactored to use a different phase. Never use this phase if
it is possible to divide the work among the other phases instead.
Using this value can significantly degrade performance. Instead, prefer dividing work into the appropriate phase callbacks.
Read
Use AfterRenderPhase.Read for callbacks that only read from the DOM. Never
write to the DOM in this phase.

