-
As you can see the setMedia is enough.
As you can see the setMedia is enough.
2009-07-31 10:12:53 UTC in ZK - Simply Ajax and Mobile
-
Take an look to an situation made in ZK to show various reports simultaneos
JasperPrint print = getReportResumo( parametros );
List pages = getReportForMovimentos( parametros );
for ( JRPrintPage page : pages )
{
print.addPage( page );
}
byte[] reportByte = JasperExportManager.exportReportToPdf( print );
final InputStream mediais = new ByteArrayInputStream(...
2009-07-31 10:12:13 UTC in ZK - Simply Ajax and Mobile
-
In addition to String source you must support Source as InputStream which is supported by JasperFillManager.fillReport.
2009-07-31 10:08:22 UTC in ZK - Simply Ajax and Mobile
-
We need to have more advanced feature. Sometimes we need to join report to show all in the same jasperreport component.
This component is to simple situation (very basically).
You must change the method
public void setContent(Media media) {
throw new UnsupportedOperationException("readonly");
}
to
public void setContent(Media media) {
_media = media;
}
and...
2009-07-31 09:57:29 UTC in ZK - Simply Ajax and Mobile
-
Due to the great performance of MVEL, I only use MVEL.
So I would like to see the VE support MVEL.
Please see http://www.zkoss.org/forum/index.zul#path%3DlistComment%3BdiscussionId%3D9039%3BcommetId%3D34658%3BcategoryId%3D18%3B
Thanks.
2009-07-24 08:17:27 UTC in ZK Studio
-
+1
The CSV Specification can be found at http://en.wikipedia.org/wiki/Comma-separated_values
There is a couple of framework which already implement the specification, please see http://www.csvobjects.org/
It would be fine to have like paging an toolbox "Export Options": CSV EXCEL XML
The toolbox can be hidden or not simple as:
So it mean default...
2009-07-22 11:42:54 UTC in ZK - Simply Ajax and Mobile
-
According to kindalu in another bug Applet and IE 7 he said Applet support IE 8
Regards.
2009-07-01 07:48:48 UTC in ZK - Simply Ajax and Mobile
-
Hi kindalu,
I found an workround, to this bug with IE 7.
I am calling System.exit(0); after shutdown operation of JXFS devices.
public void destroy() {
printerManager.shutdown();
System.exit(0);
}
Regards.
2009-07-01 07:45:35 UTC in ZK - Simply Ajax and Mobile
-
Interresting to see the same application ported to GWT.
You can try to post GWT code and ZK code then the ZK Team will work over to see what is causing the problem.
It will help us (ZK fans) to have an less memory leak inside ZK.
I have download the attached file and I will try to see what is happening.
Regards.
2009-06-30 08:07:51 UTC in ZK - Simply Ajax and Mobile
-
Please see http://docs.zkoss.org/wiki/Performance_tip
We use in our intranet ZK with grid in most case, and our users or our company only use IE 7 actually, really we didn't have memory leak!
So, if you really need performance use native namespace even possible and use Load On Demand.
2009-06-29 20:05:41 UTC in ZK - Simply Ajax and Mobile