Skip to content
🚀 Rapid Application Development with the App Builder

Replicate field data

This example was created from a user request. Using the onChange hook on a target field, any data entered will be reflected in a specified field (product_name).

✨ Example onChange Hook

js
((event, mode, columnName, getColumnValue, setColumnValue, setColumnStyle) => {
	
	setColumnValue("product_name", getColumnValue(columnName))
    
})