From c8749ecd0eeea7ca4e592d42c9c1fe2e68b9d7c3 Mon Sep 17 00:00:00 2001 From: Alan Date: Fri, 23 Sep 2022 11:23:06 +0800 Subject: [PATCH] Roo/form/Checkbox.js --- Roo/form/Checkbox.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Roo/form/Checkbox.js b/Roo/form/Checkbox.js index 7093fdd57f..634c5101a8 100644 --- a/Roo/form/Checkbox.js +++ b/Roo/form/Checkbox.js @@ -190,7 +190,9 @@ Roo.extend(Roo.form.Checkbox, Roo.form.Field, { this.fireEvent('check', this, state); } this.inSetChecked = true; - this.el.dom.value = state ? this.inputValue : this.valueOff; + + this.el.dom.value = state ? this.inputValue : this.valueOff; + this.inSetChecked = false; }, -- 2.39.2