Resolved! limit the decimal value in the integer field
function onChange(control, oldValue, newValue, isLoading) { if (isLoading || newValue == '') { return; } var fieldName = g_form.getValue('hours'); //use your field name // Regular expression to match the desired format (maximum 3...
