@magic-xpa/gui 4.1201.0 → 4.1201.1
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/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# Magic-xpa/gui
|
|
2
|
-
|
|
3
|
-
This package is part of Magic xpa Web Application Framework.
|
|
4
|
-
It is used to easily create modern business apps powered by Angular to provide a rich user experience and meet the increasingly complex enterprise business expectations for digital transformation.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
# Magic-xpa/gui
|
|
2
|
+
|
|
3
|
+
This package is part of Magic xpa Web Application Framework.
|
|
4
|
+
It is used to easily create modern business apps powered by Angular to provide a rich user experience and meet the increasingly complex enterprise business expectations for digital transformation.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
@@ -16460,6 +16460,12 @@ class MgControlBase extends GuiControlPropertyAdapter {
|
|
|
16460
16460
|
}
|
|
16461
16461
|
else {
|
|
16462
16462
|
result = temp.get_Item(0);
|
|
16463
|
+
// for multiple selection list, it is possible that nothing is selected.
|
|
16464
|
+
// In this case, result can be null.
|
|
16465
|
+
// But, the client engine doesn't expect null to be returned as the selected value from the UI.
|
|
16466
|
+
// So, return blank instead.
|
|
16467
|
+
if (this.IsMultipleSelectionListBox() && result == null)
|
|
16468
|
+
result = "";
|
|
16463
16469
|
}
|
|
16464
16470
|
}
|
|
16465
16471
|
return result;
|