Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/Proposals/InputValidation"

(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
There have been several issues about the current concepts and implementation of the scout input validation. This page describes the status quo, problems and possible solutions.
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
 
+
== Comments ==
+
 
+
 
+
* Validation is done on focus lost or on any key input (getConfiguredValidateOnAnyKey())
+
 
+
== Documentation & Discussions ==
+
=== Wiki ===
+
 
+
[[Scout/Concepts/ValueField#Events | ValueField#Events]]
+
 
+
=== Forum ===
+
[https://www.eclipse.org/forums/index.php/mv/msg/796057/1403082/#msg_1403082]
+
Summary of problems
+
* IFormField.getValue() always returns the last valid value and not the displayed value. IFormField.getErrorStatus returns an error, if there is one, but error value
+
-> Depending on your use case you might need to check the error status before reading the value
+
-> execChangedValue not firing if an invalid value is reverted back to the previous value
+
* Invalid value set programmatically
+
-> Because the framework worka with the assumption that only valid values are set in the scout model layer, the framework is acting wired when a wrong value is set. The invalid value is not shown in the GUI, only the error. ErrorStatus and displaytext are inconsistent
+
*  API
+
- SmartField.execvalidatevalue cannot be used
+
- Update the value of a field during its own execChangedValue() event.
+
- Controlling if execChangedValue() is called or not.
+
 
+
[http://www.eclipse.org/forums/index.php/m/1015825/?srch=execvalidate#msg_1015825]
+
Disable OK Button on error
+
 
+
If there is at least one field having errorStatus with severity equals to ERROR, then the Button OK will be disabled.
+
-> The "Scout way" is to leave the OK button enabled all the time and rather present a error message to the user when he clicks it.
+
 
+
[https://www.eclipse.org/forums/index.php/m/1003550/?srch=execvalidatevalue#msg_1003550]
+
Limiting input in FormFields, e.g.
+
* suppression of non-numeric input in number fields
+
* suppression of digits in string fields
+
* limiting the number of characters that can be entered in a field
+
 
+
[https://www.eclipse.org/forums/index.php/m/1065592/?srch=execvalidatevalue#msg_1065592]
+
SmartField.execvalidatevalue cannot be used
+
 
+
SmartField.execvalidatevalue is final
+
 
+
[https://www.eclipse.org/forums/index.php/m/1220946/?srch=execvalidatevalue#msg_1220946]
+
Not possible to mix execValidateValue and execChangedValue
+
 
+
=== Bugzilla ===
+
{{Bug|419693 }} Field not set after validation failure
+

Latest revision as of 06:25, 19 March 2024

The Scout documentation has been moved to https://eclipsescout.github.io/.

Back to the top