Hi, I have a ArrayCollection, containing a set of Value Objects. This ArrayCollection populates a DataGrid. I'm loading data into the ArrayCollection via a HTTPService call to the server. Once the first server call is made, I then start making repeated calls to the server to make sure I have the latest data (financial prices) shown in the datagrid. When I get a new update, all the data in the grid is reloaded, which causes some flickering of the data.
How can I only update certain columns of my datagrid, when I have a new set of data returned from the server?
Stephen