How to stylize my Feedback message? Now it’s like a normal html list element.
How to change my Feedback messages for validators like email validator?
I know that I can change the .setRequired() message with a property file and the following code:
Required=Provide a ${label} or else...
form.userId.Required=You have to provide a name
You’d need to subclass FeedbackPanel (or reimplement it on your own) and override the
newMessageDisplayComponent(String id, FeedbackMessage message)method to return any component of your liking. See JavaDoc of FeedbackPanelAs for custom validator messages: When calling
errorin your custom validator you can supply a resourceKey by which the application tries to find your error message. As above: JavaDoc is your friend.