Hi Community,
I want to know if the super(_field) in the modifiedField() calls some validateMethods ? And if so, which ones ?
public void modifiedField(FieldId _fieldId)
{
super(_fieldId);
}
It would make sense, because when You modifie a Field, then the validateField() should at least be called at super(_fieldId), to check if the modifications made are in common with the validations made in the validateField() .
*This post is locked for comments
I have the same question (0)I ran the Debugger by Setting breakspoints in both supers of the methods. The Debuuger starts at validateField() and then goes to modifiedField(), so I guess the validateField() is called before the modifiedField() ?!