diff --git a/components/radiobutton/radiobutton.ts b/components/radiobutton/radiobutton.ts index 18c03cfae96..cf72e342eb3 100644 --- a/components/radiobutton/radiobutton.ts +++ b/components/radiobutton/radiobutton.ts @@ -58,8 +58,10 @@ export class RadioButton implements ControlValueAccessor { } select() { - this.checked = true; - this.onModelChange(this.value); + if(!this.disabled) { + this.checked = true; + this.onModelChange(this.value); + } } writeValue(model: any) : void {