PL-8970 Some Validation, which could be adjusted via Studio do not work in unbuffered DataGrid.Edit

This commit is contained in:
Gleb Gorelov 2017-04-18 19:34:19 +04:00
parent 63a84c8bd5
commit 17dbfdeb25

View File

@ -1107,6 +1107,10 @@ public class WebDataGrid<E extends Entity> extends WebAbstractComponent<CubaGrid
@Override
public ErrorMessage getErrorMessage() {
try {
validate();
} catch (Validator.InvalidValueException ignore) {
}
return getContent().getErrorMessage();
}