1

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>
Vogel612
  • 5,620
  • 5
  • 48
  • 73
Suko
  • 13
  • 3

1 Answers1

0

You should be able to use either a validator or a valueChangeListener, as defined in the 2.0.2 TLD

In your case I assume you want a valueChangeListener. You'll have to bind a method of type void that takes a ValueChangeEvent as single argument, as mentioned in the previously linked docs.

Vogel612
  • 5,620
  • 5
  • 48
  • 73