You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry for very late response. Simply create a ConfirmValidate for 2 edittexts. Make form raise error then call function form.closeAllErrors(). You'll get class cast exception at
public void closeAllErrors() {
for (AbstractValidate av : mValidates) {
Validate v = (Validate) av; //Error here.
v.getSource().setError(null);
}
}
function closeAllErrors() cant close ConfirmValidate. You'll get exception
The text was updated successfully, but these errors were encountered: