Search code examples
validationdategwtgxt

Need to validate GXT DateFields dateTo must be older than dateFrom


Need to validate GXT DateFields dateTo must be older than dateFrom. As I'm thinking for solution to the problem it should be date Validator created for this purpose.

Any ideas, samples?


Solution

  • The solution to the problem is here:

    @UiHandler("dateFrom")
    void dateFromChange(ValueChangeEvent<Date> event){
        dateFrom.addValidator(new MaxDateValidator(dateTo.getValue()));
    }