我正在使用 Primefaces 3.1.1。一般来说,JSf 非常新。我的表单上有两个日历输入字段:
<p:calendar widgetVar="widgetFromDate" id="ID1" value="#{Bean.selected.From}" pattern="dd.MM.yyyy" mode="popup" showOn="button"> </p:calendar>
<p:calendar widgetVar="widgetFromTime" id="ID2" value="#{Bean.selected.Till}" pattern="HH:mm" timeOnly="true" mode="popup" showOn="button"> </p:calendar>
我有第三个字段,它连接并在单击时显示上述两个值h:commandButton
。
例如:
按钮:
<h:commandButton value="Speichern" onclick="????"></h:commandButton>
我不太确定如何做到这一点。是否有可能使用一些 ajax 事件?任何指针将不胜感激。
-BR