I'm creating a somewhat complex clientside UI control, and the idea is that this control in itself contains other controls based on properties applied to it.
I want to create these child controls from inside the initialize() overridden member, since I have to produce the child DOM elements to which these child controls will be attached, but the documentation for $create() states that you shouldn't create components from inside the initialize() function.
Now, my question is, what do I do? What's the best strategy to use here?