tags:

views:

22

answers:

1
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>
</mx:DataGrid>
A: 

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...

Gregor Kiddie
@Gregor Kiddie:thats not workin dude....
Thirst for Excellence