Printing Multiple Pages Using PrintDataGrid(Flex打印系列 转载)

Flex打印多页DataGrid

In the previous tutorial, we knew How to Use Flex Build-in Print Class – FlexPrintJob. It’s simple to use. But you may face some challenges when print multiple pages. Here is why:

To start to print on a new page, you need to write a code like this:

printJob.addObject(targetComponent);

It  adds your component to FlexPrintJob. But how many pages is it going to take?

The typical example is DataGrid. It might contains 1 or 1000 records. There is no way we can predetermine the size when binding with a dynamic data provider. Plus how do you know where to put the page break, like record 1-17 on page 1,  18-30 on page 2 …?

Fortunately, Flex gives you a workaround to solve DataGrid printing issue. Here is how:

Things You Need

  • mx.printing.FlexPrintJob
  • mx.printing.PrintDataGrid

Steps You Do

1. Create a FlexPrintJob Instance     
   var flexPrintJob: FlexPrintJob = new FlexPrintJob();

2. Start FlexPrintJob
   flexPrintJob.start();

3. Create PrintDataGrid 
   var myPrintData:PrintDataGrid = new PrintDataGrid();
   Application.application.addChild(myPrintData);

4. Set PrintDataGrid's DataProvider(from DataGrid), Width, and Height
   myPrintData.dataProvider = myData.dataProvider;
   myPrintData.width = printJob.pageWidth;
   myPrintData.height = printJob.pageHeight;

5. Loop PrintDataGrid to Generate Multiple Print Pages
   printJob.addObject(myPrintData);
   while (myPrintData.validNextPage) {
   	  myPrintData.nextPage();
    	  printJob.addObject(myPrintData);
   }

6. Print
   printJob.send();

Sample Code

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute"
    initialize="init()">

    <mx:Script>
    	<![CDATA[
    	import mx.printing.PrintDataGrid;
    	import mx.printing.FlexPrintJob;
    	import mx.collections.ArrayCollection;

    	[Bindable]
    	public var dataSource:ArrayCollection = new ArrayCollection();

        private var totalRecords:Number = 100;

    	private function init():void {
		for (var i:int = 1; i<=totalRecords; i++) {
    		  var dataObject:Object = new Object();
    		  dataObject.Name = "Name #" + i;
    		  dataObject.Phone = "Phone #" + i;
    		  dataObject.Address = "Address #" + i;
    		  dataSource.addItem(dataObject);
    		}
    	}

    	private function doPrint():void {
    		var printJob:FlexPrintJob = new FlexPrintJob();
    	   	if (printJob.start()) {
       		  var myPrintData:PrintDataGrid = new PrintDataGrid();
     	   	  Application.application.addChild(myPrintData);
         	  myPrintData.dataProvider = myData.dataProvider;
    	   	  myPrintData.width = printJob.pageWidth;
    	   	  myPrintData.height = printJob.pageHeight;

    	   	  printJob.addObject(myPrintData);
    	   	  while (myPrintData.validNextPage) {
    	   		myPrintData.nextPage();
    	   		printJob.addObject(myPrintData);
    	   	  }
    	   	  Application.application.removeChild(myPrintData);

                  printJob.send();
    	        }
    	}

    	]]>
    </mx:Script>

    <mx:Panel title="Flex Tutorial - PrintDataGrid"
    	width="500" height="500"
    	horizontalCenter="0" verticalCenter="0"
    	horizontalAlign="center" verticalAlign="middle">

        <mx:DataGrid id="myData"
            dataProvider="{dataSource}"
            width="400" height="400" />

        <mx:Button label="Print" click="doPrint()"/>

    </mx:Panel>

</mx:Application>

Conclusion

Adobe Flex provides PrintDataGrid to solve the problem of multiple pages printing. It works fine when your application mainly contains one big DataGrid.

However, life is not that simple. In many cases, you need to have a combination of different contains and controls like Canvas, VBox, HBox, Label, Text, Text Area, Image, plus DataGrid. Unfortunately, until Flex 3,  Adobe has not provided any better solution beyond FlexPrintJob and PrintDataGrid.

So, is there any 3rd party solution? I have done a lot of research. Eventually it narrows down to an open source project. This leads to our next tutorial – Printing Multiple Pages using FlexReport.

 

 

source:http://flextutorial.org/2009/05/28/printing-multiple-pages-using-printdatagrid/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值