Can anyone think of a good reason to use GWT over ZK? ZK looks pretty
amazing, I must say.
Nevertheless, do you know one website who is using Zkoss ?
Also, what you say about it not being as natural as the pure java
environment is not true, as it supports doing EVERYTHING in Java, if you
so desire. Example snippet below. The following java code snippet is
an alternative to writing the page in a ZUL XML file.
public class TestRichlet extends org.zkoss.zk.ui.GenericRichlet {
public void service(Page page) {
page.setTitle("Richlet Test");
final Window w = new Window("Richlet Test", "normal", false);
new Label("Hello World!").setParent(w);
final Label l = new Label();
l.setParent(w);
//...
w.setPage(page);
}
}
It's just such an elegant framework that it's mind blowing. It's the
most flexible thing I've seen yet, for AJAXy applications. Write your
code in Java, write it in ZUML, write it in XHTML mixed with ZUML. The
choice is entirely up to the individual.
Unfortunately, I was wrong, it's a 167K hit, as opposed to the 23K I
quoted before. Apparently the firefox status bar plugin I downloaded
lied to me.