First time here? Check out the FAQ!
I'm trying to run one of the simple hello world type apps that is listed in the developers guide.
This is the 'hello.zul' file...
?page id="testZul" title=" New ZUL Title" cacheable="false" language="xul/html" zscriptLanguage="Java" contentType="text/html;charset=UTF-8"?> <zk xmlns="http://www.zkoss.org/2005/zul" xmlns:h="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd"> <window title="Hello" border="normal" width="400px"> Do you like ZK? <label id="label"/> <separator/> <button label="Yes" onClick="label.value = self.label"/> <button label="No" onClick="label.value = self.label"/> </window> </zk>
This is runtime problem of the environment , should not studio design time problem.
It seems ZK doesn't startup in your tomcat (or other application server).
I think you must be forgot to configure zk to run in your dynamic web application.
Please check the studio user guide in 4. New ZK Web Application session
http://www.zkoss.org/download/zkstudio.dsp
or configure it manually.
http://www.zkoss.org/doc/index.dsp
Asked: 2008-09-23 13:46:58 +0800
Seen: 1,056 times
Last updated: Sep 25 '08