How to get all the selected items from in this below code selectedContsList ?
<mx:DataGrid id="dg" dataProvider="{cNumbersList}" allowMultipleSelection="true" dropEnabled="true" dragMoveEnabled="true" >
<mx:columns>
<mx:DataGridColumn dataField="contactName" headerText="Name"/>
<mx:DataGridColumn dataField="contactNo" eaderText="ContactNo"/>
</mx:columns>
<mx:Label text="Selected Contacts :" width="122" color="#C90855" height="16"/>
<mx:DataGrid id="selectedContsList" allowMultipleSelection="true" dragMoveEnabled="true" dragEnabled="true" >
<mx:columns>
<mx:DataGridColumn dataField="contactName" headerText="Name"/>
<mx:DataGridColumn dataField="contactNo" headerText="ContactNo"/>
</mx:columns&开发者_如何学Gogt;
</mx:DataGrid>
What's wrong with the following?
<mx:DataGrid id="selectedContsList" dataProvider="{dg.selectedItems}" allowMultipleSelection="true" dragMoveEnabled="true" dragEnabled="true" >
assuming that's what you are asking of course...
精彩评论