@magic-xpa/angular 4.1000.0-dev4100.259 → 4.1000.0-dev4100.261
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.
@@ -2011,10 +2011,10 @@ class TaskMagicService {
|
|
2011
2011
|
mgOnRadioSelectionChanged(idx) {
|
2012
2012
|
let result = this.getFormControl('0', idx);
|
2013
2013
|
let guiEvent = getGuiEventObj('selectionchanged', idx, 0);
|
2014
|
-
if (typeof result.value !== '
|
2014
|
+
if (typeof result.value !== 'number')
|
2015
2015
|
guiEvent.Value = result.value.index;
|
2016
2016
|
else
|
2017
|
-
guiEvent.Value = result.value;
|
2017
|
+
guiEvent.Value = result.value.toString();
|
2018
2018
|
this.insertEvent(guiEvent);
|
2019
2019
|
}
|
2020
2020
|
close() {
|