I have a Picker with a button and InfiniteContainer cnt below it.
I make this container not scrollable cnt.setScrollableY(false); because I want the whole form stay scrollable. If my container contains a lot of items (more than initial display can show) and I leave my container scrollable it results in having two different scrollbars and it's confusing.
However, if I set the container to not scrollable, I can't implement pullToRefresh().
I don't want to refresh my whole form, I want just to refresh this container. How can I achieve this?