famous-flex
famous-flex copied to clipboard
Changes to LinkedListViewSequence does not get reflected in FlexScrollView
Hi,
I'm using FlexScrollView in the following manner:
this.imageCells = new LinkedListViewSequence();
this.scrollView.setDataSource(this.imageCells);
After this.scrollView
has been already populated with some views, When I do this:
self.imageCells.insert(0, image);
or this:
self.imageCells.remove(0);
Nothing happens to this.scrollView
.