-
Try the zul below.
tab5.onClose(); // It is better to be tab5.close();
Without call "tabbox.invalidate();" the onClose simple will not work properly.
Why should developer call "tabbox.invalidate();" ?
Tabbox tabbox = (Tabbox...
2009-11-24 18:05:27 UTC in ZK - Simply Ajax and Mobile
-
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