diff --git a/src/app/components/radiobutton/radiobutton.ts b/src/app/components/radiobutton/radiobutton.ts index e7ead265d15..a2ccc303ad4 100755 --- a/src/app/components/radiobutton/radiobutton.ts +++ b/src/app/components/radiobutton/radiobutton.ts @@ -135,7 +135,7 @@ export class RadioButton implements ControlValueAccessor, OnInit, OnDestroy { this.checked = true; this.onModelChange(this.value); this.registry.select(this); - this.onClick.emit(event); + this.onClick.emit({originalEvent: event, value: this.value}); } } diff --git a/src/app/showcase/components/radiobutton/radiobuttondemo.html b/src/app/showcase/components/radiobutton/radiobuttondemo.html index 90573b81509..6feec98769b 100755 --- a/src/app/showcase/components/radiobutton/radiobuttondemo.html +++ b/src/app/showcase/components/radiobutton/radiobuttondemo.html @@ -174,7 +174,9 @@