是否有任何简单形式的例子,用于输入jsf中的出生日期.. 非常感谢你
答案 0 :(得分:3)
您可以使用Tomahawk's <t:inputDate>
。
使用它就像:
<t:inputDate type="date"
popupCalendar="false" value="#{yourBean.yourDateValue}" />
您应该将tomahawk jar文件添加到类路径中以便使用它,并导入tomahawk命名空间:
xmlns:t="http://myfaces.apache.org/tomahawk"