I have a dataview wich polls data from a store. Best would be if i could load the the data partly and then load new chunks on every click backwards or forwards. Also i want to loop the carousel (first items are added to the end and last items are added to the begin).
My current approach is to load six items into the dataview and set the view to overflow: none in css and autoScroll:false in extjs. I then want to move the view every time i click forward or backward buttons. I tried scrollIntoView() which does scroll to the selected node but i don't know how to move the rest of the view.
Later i wanted to add a trigger on the last nodes of the current visible nodes to load more items from the store.