This is another example based on a user’s request. Using the onChange hook on a target field, any data entered will be reflected in a specified field (product_name).
Using the onChange hook (available in the Form Builder) #
((event, mode, columnName, getColumnValue, setColumnValue, setColumnStyle) => {
setColumnValue("product_name", getColumnValue(columnName))
})