I have two input fields fromDate and toDate which are instances of Date class.
The Date class uses custom Date validator which validates the month, day and year fields
contained in the date field.
The custom date validator is specific for each date i.e, fromDate and toDate.
I need to compare the month, day or year fields of fromDate with toDate.
If the fromDate is greater than toDate, a validation message has to displayed.
Update:
The fromDate and toDate are two custom date components as below
<eg:dateField id="inpFromDate" value="#{mrBean.fromDate}" .... />
<eg:dateField id="inpToDate" value="#{mrBean.toDate}" .... />
fromDate and toDate are instances of Date class which is
public class Date {
private String mm;
private String dd;
@customDateValidator //Validates each date field
private String yyyy;
//constructors
//getters and setters
How would you implement the validator in this case where each date already has a validator
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…