-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Disable client side validation - Validation from Binder will happen upon Binder#validate() or if the field binding uses withValidator fix vaadin/vaadin-radio-button#179
- Loading branch information
1 parent
148108b
commit 379c836
Showing
6 changed files
with
109 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
...-button-flow/src/main/java/com/vaadin/flow/component/radiobutton/FieldValidationUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Copyright 2000-2020 Vaadin Ltd. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
package com.vaadin.flow.component.radiobutton; | ||
|
||
|
||
class FieldValidationUtil { | ||
private FieldValidationUtil() { | ||
|
||
} | ||
|
||
static <T> void disableClientValidation(RadioButtonGroup<T> component) { | ||
// if the component was already attached override the validate() | ||
|
||
component.addAttachListener(e -> overrideClientValidation(component)); | ||
} | ||
|
||
private static <T> void overrideClientValidation(RadioButtonGroup<T> component) { | ||
component.getElement() | ||
.executeJs("this.validate = function () {" + | ||
"return this.checkValidity();};"); | ||
|
||
component.getUI().ifPresent(ui -> ui.beforeClientResponse(component, (e) -> { | ||
if (component.isInvalid()) { | ||
// By default, the invalid flag is always false when a component is created. | ||
// However, if the component is populated and validated in the same HTTP request, | ||
// the server side state may have changed before the JavaScript disabling client | ||
// side validation was properly executed. This can sometimes lead to a situation | ||
// where the client side thinks the value is valid (before client side validation | ||
// was disabled) and the server side thinks the value is invalid. This will lead to | ||
// strange behavior until the two states are synchronized again. To avoid this, we will | ||
// explicitly change the client side value if the server side is invalid. | ||
component.getElement().executeJs("this.invalid = true"); | ||
} | ||
})); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters