5/24/2010 6:59:01 AM
Title:
Multiple row
Hi All,
How to pass multiple rows one datagrid to another datagrid.
thanks in advance
K.V.Ramakrishna
5/24/2010 7:06:03 AM
First add the data item from dataProvider of Grid1 to the dataProvider of Grid2 then remove the data item from dataprovider of Grid1.
5/24/2010 9:54:14 AM
you can use this code to copy row from one Datagrid to another in flex
// here I am adding row 2nd of DataGrid1 to Datagrid2
myDataProvider2.addItemAt(DataGrid1.getItemAt(1))