If the user changes the value of the Category field, set the default value for the Subcategory
If the user changes the value of the "Category" field, set the default value for the "Subcategory" field function onChange(control, oldValue, newValue, isLoading, isTemplate) { if (isLoading || newValue === '') { return; } if(newValue==...
