Hi.
im trying add a HTML (i.e <a href=$baseurl+/KEY-123>KEY-123<a>
) inside of InvalidInputException.
Make this:
public void validate(Map transientVars, Map args, PropertySet ps) throws InvalidInputException {
String html = "<a href=$baseurl+/KEY-123>KEY-123</a>";
throw new InvalidInputException(i18n.getText(“plugin.temposynch.validate.field.estimate.less”).concat(html));
}
Have another way to do this?
Thanks.