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
Currently I'm using mvvmfx validation ver.1.8.0 for my app.
I have two PasswordFields named 'password' and 'confirmPassword' in View ,to which two string properties are binded from the ViewModel.
I do the following validation:
Validator passwordValidator = new BlankTextValidator(password, getValidationBundle().getString("cannot_be_blank"));
where BlankTextValidator is:
public class BlankTextValidator extends FunctionBasedValidator {
private static final Predicate<String> isNotBlank = input -> !UtilMethods.isBlank(input);
public BlankTextValidator(ObservableValue<String> source, String message) {
super(source, isNotBlank, ValidationMessage.error(message));
}
}
I use this validator in quite many places and it works just as expected. For confirmation I use ObservableRuleBasedValidator:
ObservableRuleBasedValidator ruleBasedValidator = new ObservableRuleBasedValidator();
ruleBasedValidator.addRule(confirmPasswordNotBlank,ValidationMessage.error(getValidationBundle().getString("password_confirm_required")));
ruleBasedValidator.addRule(passwordMatches, ValidationMessage.error(getValidationBundle().getString("password_mismatch")));
I use CompositeValidator, to which i add the abovementioned valiidators. In View i use ControlsFxVisualizer and also add validation for each control.
ValidationVisualizer visualizer = new ControlsFxVisualizer();
visualizer.initVisualization(adminViewModel.passwordValidation(), passwordField);
visualizer.initVisualization(adminViewModel.confirmPasswordValidation(), confirmField);
So far, so good. PasswordField's validation is ok, but comfirmField's validation freezes on first rule, No matter if the field is blank or not. I have tried your implementation from https://github.com/sialcasa/mvvmFX/wiki/Validation . With the same result!
Another strange issue:
I use checkcombobox and make validation so that at least one of the fields of the list is checked. In this case i bind every checkbox to BooleanProperty in ViewModel.
The Validation:
public class CheckComboBoxValidator extends ObservableRuleBasedValidator {
Sorry for not writing right away. I solved my first issue - the mistake was mine. But the second issue with CheckComboBox is still valid. I will try to create a minimal example for you to use.
Currently I'm using mvvmfx validation ver.1.8.0 for my app.
I have two PasswordFields named 'password' and 'confirmPassword' in View ,to which two string properties are binded from the ViewModel.
I do the following validation:
Validator passwordValidator = new BlankTextValidator(password, getValidationBundle().getString("cannot_be_blank"));
where BlankTextValidator is:
public class BlankTextValidator extends FunctionBasedValidator {
}
I use this validator in quite many places and it works just as expected. For confirmation I use ObservableRuleBasedValidator:
BooleanBinding confirmPasswordNotBlank = Bindings.createBooleanBinding(() -> !UtilMethods.isBlank(confirmPassword.get()), confirmPassword);
BooleanBinding passwordMatches = password.isEqualTo(confirmPassword);
ObservableRuleBasedValidator ruleBasedValidator = new ObservableRuleBasedValidator();
ruleBasedValidator.addRule(confirmPasswordNotBlank,ValidationMessage.error(getValidationBundle().getString("password_confirm_required")));
ruleBasedValidator.addRule(passwordMatches, ValidationMessage.error(getValidationBundle().getString("password_mismatch")));
I use CompositeValidator, to which i add the abovementioned valiidators. In View i use ControlsFxVisualizer and also add validation for each control.
ValidationVisualizer visualizer = new ControlsFxVisualizer();
visualizer.initVisualization(adminViewModel.passwordValidation(), passwordField);
visualizer.initVisualization(adminViewModel.confirmPasswordValidation(), confirmField);
So far, so good. PasswordField's validation is ok, but comfirmField's validation freezes on first rule, No matter if the field is blank or not. I have tried your implementation from https://github.com/sialcasa/mvvmFX/wiki/Validation . With the same result!
Another strange issue:
I use checkcombobox and make validation so that at least one of the fields of the list is checked. In this case i bind every checkbox to BooleanProperty in ViewModel.
The Validation:
public class CheckComboBoxValidator extends ObservableRuleBasedValidator {
}
The Validation works, but checkcombobox freezes(becomes not responsive) in case of :
The problem resolves when the user selects another control.
The text was updated successfully, but these errors were encountered: