@simpleangularcontrols/sac-common 10.0.0-rc.23 → 10.0.0-rc.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/simpleangularcontrols-sac-common.umd.js +4 -1
- package/bundles/simpleangularcontrols-sac-common.umd.js.map +1 -1
- package/bundles/simpleangularcontrols-sac-common.umd.min.js +1 -1
- package/bundles/simpleangularcontrols-sac-common.umd.min.js.map +1 -1
- package/controls/checkbox/radiobuttons.d.ts +3 -3
- package/esm2015/controls/checkbox/radiobutton.js +4 -1
- package/esm2015/controls/checkbox/radiobuttons.js +3 -3
- package/fesm2015/simpleangularcontrols-sac-common.js +4 -1
- package/fesm2015/simpleangularcontrols-sac-common.js.map +1 -1
- package/package.json +1 -1
- package/simpleangularcontrols-sac-common-10.0.0-rc.24.tgz +0 -0
- package/simpleangularcontrols-sac-common.metadata.json +1 -1
- package/simpleangularcontrols-sac-common-10.0.0-rc.23.tgz +0 -0
|
@@ -3770,7 +3770,7 @@
|
|
|
3770
3770
|
// #endregion Constructors
|
|
3771
3771
|
// #region Public Methods
|
|
3772
3772
|
/**
|
|
3773
|
-
*
|
|
3773
|
+
* Getter für Radio Button Index
|
|
3774
3774
|
*/
|
|
3775
3775
|
SacRadiobuttonsCommon.prototype.GetRadionButtonIndex = function () {
|
|
3776
3776
|
this.radioButtonIndex++;
|
|
@@ -3990,6 +3990,9 @@
|
|
|
3990
3990
|
SacRadiobuttonCommon.prototype.ngOnInit = function () {
|
|
3991
3991
|
// set method to display helptext
|
|
3992
3992
|
this.setHelpTextMode();
|
|
3993
|
+
if (this.value === this.sacRadioButtons.value) {
|
|
3994
|
+
this.checked = true;
|
|
3995
|
+
}
|
|
3993
3996
|
};
|
|
3994
3997
|
// #endregion Public Methods
|
|
3995
3998
|
// #region Private Methods
|