Hi, Quick question. I optimized an item renderer that was previously using a really heavy grid to layout a bunch of labels. Now, I use the move() method in the updateDisplayList(). of the renderer to move the labels instead.
It works great, except for some reason when the next page is accessed(multiple pages of search results...)the updateDisplayList() doesnt lay the fields out properly. I tried calling invalidateDisplayList() again after the measuring, but still didn't work. I don't want to do any binding because of performance overhead. The only thing that works is to actually take the move() methods out of the updateDisplayList() and put them into another method, and then use CallLater() in updateDisplayList() to actually call that method. This works great. I just feel like it is kinda sloppy. Is there something I'm missing here?

