Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

TUTORIALVaadin lets you build secure, UX-first PWAs entirely in Java.
Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Calling javascript synchronously by Enver Haase, 1 week ago
Cambiar el idioma a los mensajes de validación
Hola, colegas.
Necesito cambiar los mensajes de validación de Vaadin para que en lugar de aparecer en inglés lo hagan en español, pero no encuentro cómo. En la imagen adjunta les pongo un ejemplo.
Gracias.
Last updated on
debe personalizarlo con validadores, segun su pregunta:
Calendar startDate = Calendar.getInstance();
Calendar endDate = Calendar.getInstance();
startDate.set(2000, Calendar.JANUARY, 1, 12, 0, 0);
endDate.set(2000, Calendar.FEBRUARY, 20, 12, 0, 0);
DateRangeValidator minMaxValidator = new DateRangeValidator("fuera de rango", startDate.getTime(), endDate.getTime(), Resolution.DAY);
fecVen.addValidator(minMaxValidator);
Last updated on
You cannot reply to this thread.