Hi, all; I am revisiting something I built a couple of months ago, and I'd like to upgrade it to reflect better practices if possible. I have a function I run on data change that updates the renderer to reflect the state of the data item. Unfortunately, the first time the data change runs on an item renderer, the components inside the renderer aren't ready, so I wound up getting errors. I fixed this basically with brute force and ignorance by setting an isWhole variable in the creationComplete handler. Quick, easy, and it worked. But I have a feeling this is not how the "experts" would handle this situation.
So, what is the best practice for this situation? Thanks; Amy

