[flexcoders] Printing flex datagrid to PDF.

2008-05-08 Thread Hemkarna
Friends, Is it possible to save the print stream of a DataGrid, AdvanceDataGrid to bitmaps or vector objects and beam the array to ColdFusion to retreive a PDF Document? I'm trying not to write a flex data grid report and then re-write the same using ColdFusion Reports. Any assistance with the

Re: [flexcoders] Printing flex datagrid to PDF.

2008-05-08 Thread Robert Stehwien
You can use BitmapData#draw() to draw any display object to a bitmap. But that would, I believe, only show you what is currently displayed. It might be a start. --Robert On Thu, May 8, 2008 at 11:48 AM, Hemkarna [EMAIL PROTECTED] wrote: Friends, Is it possible to save the print stream of a

Re: [flexcoders] Printing flex datagrid to PDF.

2008-05-08 Thread shaf ram
Have a look at ImageSnapshot new to Flex 3. It allows you to capture any display object in Flex. - Original Message From: Robert Stehwien [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, May 8, 2008 2:14:41 PM Subject: Re: [flexcoders] Printing flex datagrid to PDF

Re: [flexcoders] Printing flex datagrid to PDF.

2008-05-08 Thread Richard Rodseth
] To: flexcoders@yahoogroups.com Sent: Thursday, May 8, 2008 2:14:41 PM Subject: Re: [flexcoders] Printing flex datagrid to PDF. You can use BitmapData#draw( ) to draw any display object to a bitmap. But that would, I believe, only show you what is currently displayed. It might be a start