gd-sprest-bs 10.2.7 → 10.2.8
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.
|
@@ -800,6 +800,11 @@ exports.ListForm.renderEditForm = function (props) {
|
|
|
800
800
|
}
|
|
801
801
|
// Get the field value
|
|
802
802
|
var fieldValue = formField.getValue();
|
|
803
|
+
// See if an event exists
|
|
804
|
+
if (formField.controlProps.onGetValue) {
|
|
805
|
+
// Update the value
|
|
806
|
+
fieldValue.value = formField.controlProps.onGetValue(formField.controlProps);
|
|
807
|
+
}
|
|
803
808
|
// Set the item value
|
|
804
809
|
values[fieldValue.name] = fieldValue.value;
|
|
805
810
|
// See if this is the file leaf ref
|