Is there a way to add custom HTML to the FeedbackPanel?
As in, instead of only adding the <span> element to the <li> the FeedbackPanel creates for each added message, I’d like to add a <div> with a <button> and the <span>.
So I’m looking for something like validationErrorFeedback.error(message); where message would be my HTML. Is this possible?
You can subclass
FeedbackPaneland hence provide your own markup. Just copyFeedbackPanel.htmland edit the markup as you wish (the component hierarchy must still be the same though).