[SOLVED] Image Source in Tabs

I am using virtual list with images in tabs. I initialize lists on pageInit, pictures on pageAfterIn and also both of them on all tab’s click event. I see all lists with images when page is loaded and while sliding between tabs. However if I click to any tab, lists are okey but my pictures disappears. To sum up:
pageInit: GetLists()
pageAfterIn: SetPictures()
(tabs)@click: GetLists(); SetPictures();
How can I show my pictures after tab click?

I just removed @click events from tabs and it is working now.