在selectinputdate icefaces中禁用过去几天

时间:2015-10-28 20:38:34

标签: java icefaces-2

如何在icefaces的selectinputdate弹出窗口中禁用过去几天?

<ice:selectInputDate id="date" 
    value="#{bean.date}"
    renderAsPopup="true" required="true"
    partialSubmit = "true"   
</ice:selectInputDate>

1 个答案:

答案 0 :(得分:0)

您应该可以使用2.0.2 TLD

中定义的validatorvalueChangeListener

在你的情况下,我假设你想要一个valueChangeListener。您必须绑定一个类型为void的方法,该方法将ValueChangeEvent作为单个参数,如前面链接的文档中所述。