Resolved! The value of the category field should appear in the short description field.
function onChange(control, oldValue, newValue, isLoading, isTemplate) { if (isLoading || newValue === '') { return; }var categoryValue = gForm.getValue('category'); gForm.setValue('short_description', categoryValue);}I am using this code ...
