How I can disable past days in a selectinputdate popup in icefaces?
<ice:selectInputDate id="date"
value="#{bean.date}"
renderAsPopup="true" required="true"
partialSubmit = "true"
</ice:selectInputDate>
How I can disable past days in a selectinputdate popup in icefaces?
<ice:selectInputDate id="date"
value="#{bean.date}"
renderAsPopup="true" required="true"
partialSubmit = "true"
</ice:selectInputDate>
You should be able to use either a
validatoror avalueChangeListener, as defined in the 2.0.2 TLDIn your case I assume you want a
valueChangeListener. You'll have to bind a method of type void that takes aValueChangeEventas single argument, as mentioned in the previously linked docs.