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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user