diff --git a/typo3/sysext/backend/Resources/Public/JavaScript/FormEngineValidation.js b/typo3/sysext/backend/Resources/Public/JavaScript/FormEngineValidation.js index d1dc1accf8f44469581d6804ca5ef2be99bb51fe..5d51a019ac64336f3c43df44cb40f901cc1fdece 100644 --- a/typo3/sysext/backend/Resources/Public/JavaScript/FormEngineValidation.js +++ b/typo3/sysext/backend/Resources/Public/JavaScript/FormEngineValidation.js @@ -247,6 +247,9 @@ define([ } $mainField.val(newValue); + // After updating the value of the main field, dispatch a "change" event to inform e.g. the "RequestUpdate" + // component, which always listens to the main field instead of the "human readable field", about it. + $mainField.get(0).dispatchEvent(new Event('change')); $humanReadableField.val(formattedValue); } };