Custom component based of a PrintDataGrid : PrintDataGrid « Components « Flex






Custom component based of a PrintDataGrid

Custom component based of a PrintDataGrid
       

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" backgroundColor="white">
    <mx:PrintDataGrid xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:columns>
            <mx:DataGridColumn dataField="firstName" headerText="First Name" />
            <mx:DataGridColumn dataField="lastName" headerText="Last Name" />
        </mx:columns>
    </mx:PrintDataGrid>
</mx:Application>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Composite component containing a PrintDataGridComposite component containing a PrintDataGrid
2.Print DataGrid out from Hiden PrintDataGridPrint DataGrid out from Hiden PrintDataGrid