我想在 Flash as3 的 DataGrid 中选择当前结果集中的多行。我试着这样做:
this.dataGrid.selectedItems = _selectedElements[index];
where_selectedElements
是一个数组,其中包含这样收集的结果页面上的 prevoius 选择结果:
_selectedElements[index] = this.dataGrid.selectedItems;
_selectedElements
具有正确的值(checked
),我确定问题出在 datagrid 组件上。
有人知道如何使它工作吗?