|
@@ -523,6 +523,14 @@ export default class RadioButton extends Base {
|
|
|
type: 'modify',
|
|
|
annotation: annotation
|
|
|
})
|
|
|
+
|
|
|
+ this.eventBus.dispatch('formFieldValuesChange', {
|
|
|
+ type: 'radiobutton',
|
|
|
+ id: this.annotation.name,
|
|
|
+ fieldName: this.annotation.fieldName,
|
|
|
+ pageNumber: this.page + 1,
|
|
|
+ isChecked: this.annotation.isChecked,
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -862,6 +870,14 @@ export default class RadioButton extends Base {
|
|
|
type: 'modify',
|
|
|
annotation: updateAnnot
|
|
|
})
|
|
|
+
|
|
|
+ 'isChecked' in props && this.eventBus.dispatch('formFieldValuesChange', {
|
|
|
+ type: 'radiobutton',
|
|
|
+ id: this.annotation.name,
|
|
|
+ fieldName: this.annotation.fieldName,
|
|
|
+ pageNumber: this.page + 1,
|
|
|
+ isChecked: this.annotation.isChecked,
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -941,6 +957,14 @@ export default class RadioButton extends Base {
|
|
|
type: 'modify',
|
|
|
annotation: updateAnnot
|
|
|
})
|
|
|
+
|
|
|
+ 'isChecked' in props && this.eventBus.dispatch('formFieldValuesChange', {
|
|
|
+ type: 'radiobutton',
|
|
|
+ id: this.annotation.name,
|
|
|
+ fieldName: this.annotation.fieldName,
|
|
|
+ pageNumber: this.page + 1,
|
|
|
+ isChecked: this.annotation.isChecked,
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
cancelSameGroupButton () {
|