var scrollPos:int = myGird.verticalScrollPosition;
myGrid.dataProvider = updatedDataProvider;
myGrid.verticalScrollPosition = scrollPos;
Here I am describing some technical issues which I faced and how I fixed them. I hope this will be helpful for those who may face the same.
Saturday, March 19, 2011
Sunday, January 30, 2011
Dropdown on a ComboBox not updating when changing dataProvider
[yourCombo].dataProvider = yourDataProvider; is not updating the dropdowns?
Try,
[yourCombo].dataProvider = yourDataProvider;
[yourCombo].dropdown.dataProvider = [yourCombo].dataProvider;
It should happen internally but bad bad SDK!
Try,
[yourCombo].dataProvider = yourDataProvider;
[yourCombo].dropdown.dataProvider = [yourCombo].dataProvider;
It should happen internally but bad bad SDK!
Subscribe to:
Posts (Atom)