Home   Single Page

ZK JSF コンポーネントの使用

ZK は 各ZUL コンポーネントに対応する JSF コンポーネントを提供します。使用法は taglib を除いては ZK JSP タグによく似ています。参照 URI は http://www.zkoss.org/jsf/zul です。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Validator Example</title>
</head>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://www.zkoss.org/jsf/zul" prefix="z"%>
<body>
<f:view>
    <h:form id="helloForm">    
        <z:page>        
            <z:window z:title="Validator Example" width="500px" border="normal">            
                --Validate input day must in weekend--<br/>                
                <z:datebox id="dbox" format="yyyy/MM/dd"                

f:value="#{ValidatorBean.value}"

f:validator="#{ValidatorBean.validateDate}"/>

<h:message
                style="color: red; font-style: oblique;"                
                    for="dbox" />                    
                <br/>                
                                <h:commandButton id="submit" action="#{ValidatorBean.doSubmit}" value="Submit" />                                
            </z:window>            
            <h:messages/>            
        </z:page>        
    </h:form>    
    <a href="../index.html">Back</a>    
</f:view>
</body>
</html>