I have this datagrid link in the application:
<mx:DataGrid id=”src2grid”
<mx:columns>
<mx:DataGridColumn dataField=”Pro”/>
<mx:DataGridColumn dataField=”Type”/>
<mx:DataGridColumn dataField=”Agr”/>
</mx:columns>
</mx:DataGrid>
linking to an external data.as file:
src2grid.dataProvider = [
{Pro:'MSC', Type:'ABC.', Agr:'75560627-7605053'},
{Pro:'CSU', Type:'AAA', Agr:'13499110ZZS0403-13541087'},
{Pro:'DDD', Type:'SCC', Agr:'84499110ZZS0403-14847350'},
];
What’s the best way to add links to each item to show a
different state in the same application? Is there anyway to have
different links for values in the Pro column and Type column?
Thanks so much for any help.
ET
Related posts:
- About how to construct dynamic DataGrid
- PopupManager and state change problem
- When set dataGrid showHeader = false, dataGrid.rowCount then +1, this bug can solve?
- how to dynamically add a column to data grid
- checkboxes in datagrid
Related posts brought to you by Yet Another Related Posts Plugin.