-
First - Result columns are being cut off around 20+ characters or 3-4 words.
Secondly - When there is an email address in the result set, the field gets cut off at the . in the email address.
2006-11-20 15:54:47 UTC in OpenReports
-
Logged In: YES
user_id=1339117
Interestingly, I tried deleting them again today and it
worked without a hitch...
2006-09-22 17:51:36 UTC in OpenReports
-
This is on 2.0-M2.
I first tried to just remove the report and got the
error. Then I removed it from all groups and tried
again and still got the error. Finally I tried
removing all log entries that referenced this report,
and I still get this error.
2006-09-21 19:56:08 UTC in OpenReports
-
In ReportWriteProviderImpl.java line 521
Originally :
if (exportType == ORStatics.EXPORT_PDF)
jasperDesign.setColumnHeader(bandHeader);
Patch :
if (exportType == ORStatics.EXPORT_PDF) {
jasperDesign.setColumnHeader(bandHeader);
} else {
jasperDesign.setTitle(bandHeader);
}
This will make it so that the column headers will
appear only at the top of the CSV and XLS...
2006-09-14 21:02:38 UTC in OpenReports