Standardized custom controls to fire input event instead of changed which is immediate for ui

renamed onChange handler code to better reflect what it does
tested all controls on widget form to ensure they update and roundtrip properly and dirty checking is now fired immediately no need to tab off
This commit is contained in:
2020-03-26 23:42:37 +00:00
parent 091e6329dc
commit b9fa360d33
14 changed files with 64 additions and 74 deletions

View File

@@ -604,10 +604,10 @@ export default {
vm.formState.errorBoxMessage = ret;
},
///////////////////////////////
// On onChange handler
// On fieldValueChanged handler
// This is required so that server errors can be cleared when input is changed
//
onChange(vm, ref) {
fieldValueChanged(vm, ref) {
if (triggeringChange || vm.formState.loading) {
return;
}