-
The same performance-problem can be easily seen when using org.zkoss.zul.Filedownload to download files via ZK. The proposed patch fixes this also.
2009-10-03 16:31:08 UTC in ZK - Simply Ajax and Mobile
-
Due to missing BufferedOutputStreams, IO-Performance is quite horrible when using org.zkoss.io.RepeatableInputStream.
For a simple test use the following script which loads a local file (referenced by absolute path) to a Media-Object and copies this object 10 times to different files. Although the test is a little bit "artifical", I'm having real issues with ZKs IO-Performance developing a...
2009-10-03 10:58:02 UTC in ZK - Simply Ajax and Mobile
-
mjablonski committed revision 922 to the ZK Forge SVN repository, changing 41 files.
2009-07-13 08:46:19 UTC in ZK Forge
-
Index: zul/src/archive/web/zul/css/normie.css.dsp
===================================================================
--- zul/src/archive/web/zul/css/normie.css.dsp (revision 12019)
+++ zul/src/archive/web/zul/css/normie.css.dsp (working copy)
@@ -133,7 +133,7 @@
.z-msgbox-exclamation {
background-image: url(${c:encodeURL('~./zul/img/msgbox/warning-btn.gif')});
}...
2009-07-08 07:31:07 UTC in ZK - Simply Ajax and Mobile
-
mjablonski committed revision 903 to the ZK Forge SVN repository, changing 207 files.
2009-05-06 08:32:30 UTC in ZK Forge
-
Just to make things clear... existing code is:
if (_pgi != null) {
if (atg > _pgi.getPageCount() )
atg = _pgi.getPageCount();
_pgi.setActivePage(atg);
}
Correct code should be:
if (_pgi != null) {
if (atg > _pgi.getPageCount() - 1)
atg = _pgi.getPageCount() - 1;
_pgi.setActivePage(atg);
}.
2009-05-05 07:49:26 UTC in ZK - Simply Ajax and Mobile
-
The SVN-commit 11479 in Listbox breaks paging (a WrongValueException is thrown when the model shrinks), because the new code to correct the ActivePage at the end of syncModel(int min, int max) isn't correct. ActivePage counts from 0, while getPageCount() is always one or more. So the new code sets ActivePage to 1, which throws a WrongValueException via the Paging-component. Fix is to decrement...
2009-05-05 07:46:21 UTC in ZK - Simply Ajax and Mobile
-
When using 3.6.1 (Freshly), the Datebox doesn't work as expected (as in 3.6.0).
Using the following code to select a date via the popup will result in a wrong Date in the textfield (e.g. alwyay 1999, regardless of selected year) :
Using the following code throws always a constraint-violation, regardless of the selected date:
2009-04-22 11:47:23 UTC in ZK - Simply Ajax and Mobile
-
Problem does only occur when running Firefox / Linux within VMWare.
So it's a VMWare-bug, not a ZK-bug...
2009-04-18 20:43:24 UTC in ZK - Simply Ajax and Mobile
-
The problem does only exist running Firefox on Linux (Ubuntu 8.04 & Firefox 3.0.8). Firefox/Windows works fine.
2009-04-18 06:44:58 UTC in ZK - Simply Ajax and Mobile