2

我想在我的 xhtml 网站上显示一个 rich:calendar。这是我的代码。我不明白为什么它不起作用(该代码不显示日历)。我没有收到任何错误,日历没有出现。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:rich="http://richfaces.org/rich"
>

<f:view>
    <h:head>
        <title>Title</title>
    </h:head>
    <h:body>
        <h:panelGrid columns="2" styleClass="center">
            <h:outputText value="Date from" />
            <rich:calendar id="calendar_from" datePattern="d/M/yy HH:mm" value="18/11/12 09:00" popup="true" locale="de/DE" />
        </h:panelGrid>
    </h:body>
</f:view>
</html>
4

1 回答 1

2

确保richfaces jar在classpath...

于 2012-11-18T20:37:18.853 回答