From 091e6329dca5be2cad8d328d1710cfe8708a8e02 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 26 Mar 2020 22:29:31 +0000 Subject: [PATCH] Missing required change event for parent form to trigger various processes such as showing save button --- ayanova/src/components/pick-list.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ayanova/src/components/pick-list.vue b/ayanova/src/components/pick-list.vue index 458a2aeb..18829590 100644 --- a/ayanova/src/components/pick-list.vue +++ b/ayanova/src/components/pick-list.vue @@ -149,7 +149,10 @@ export default { return; } if (e.id != null) { + //this is required for the control to update this.$emit("input", e.id); + //this is required for the parent form to trigger the onChange handler + this.$emit("change", e.id); } this.lastSelection = e; },