In Flex, using AdvancedDataGrid, I'm trying to achieve a drag and drop of one row's column data to another row's column or the same row but different column. Is this even possible? I've been googling for hours and all I can find are drag and drop whole columns just to rearrange their view order.
问问题
700 次
1 回答
0
您有两个选项可以使列可拖动。
首先是使 DataGrid 中的所有列都可拖动。您可以使用DataGrid 类上的draggableColumns属性来执行此操作。将其值设置为 true。
二是在DataGridColumn 类上设置可拖动属性。
在这两种情况下,您都可以使用列标题拖动列。
如果您希望能够拖动单个单元格,那么据我所知,没有办法做到这一点。
于 2011-01-29T13:23:55.993 回答