Flex - Tab View Multiple DataGrids and same dataProvider
Posted
by user283403
on Stack Overflow
See other posts from Stack Overflow
or by user283403
Published on 2010-05-26T05:55:12Z
Indexed on
2010/05/26
6:01 UTC
Read the original article
Hit count: 334
I have a flex application in which I have a TabNavigator with multiple tabs and a datagrid in each of those tabs. I have bound s single array of data to each grid.
What I want to do is to bind each grid with a particular set of data in that array i.e. to distribute array contents among grids based on data type. For example items starting with letter A could be displayed in first grid, B in second, starting with C in third and so on. Hence you can say alphabetically distribute the data on different grids. The problem is that the data will be added randomly by the user.
To make one data array for each grid is not an option (due to design restrictions).
Any suggestions please?
Thanks in advance
© Stack Overflow or respective owner