正如我在标题中提到的,我需要更改错误消息的颜色。默认情况下,它显示为黑色。
到目前为止,这是我的代码:
RequiredFieldValidator rfv = new RequiredFieldValidator();
branch_name_txt.getValidators().add(rfv);
rfv.setMessage("This field is not optional.");
rfv.setIcon(new GlyphIcons().setFontAwesomeIconGlyph('\uf00d', Color.RED, 20.0));