-
Type:
Bug
-
Status: Closed
-
Priority:
Trivial
-
Resolution: Later
-
Affects Version/s: Adobe Flex SDK 3.5 (Release)
-
Fix Version/s: None
-
Component/s: Print Management
-
Labels:None
-
Environment:Affected OS(s): All OS Platforms
Affected OS(s): All OS Platforms
Language Found: English
Steps to reproduce:
1. Run the attached PrintSample02.mxml
2. Click "Print"
Actual Results:
The print out result is based on measuredWidth/Height, so the print out is very small which included non displayed columns.
Expected Results:
With many datagrid columns, it should not use measuredWidth/Height in FlexPrintJob.as.
Workaround (if any):
Call the below from application.
explicitWidth = Math.max(width, measuredMinWidth);
explicitHeight = Math.max(height, measuredMinHeight);