Resolved! How to prevent special characters on a field
I have the following onChange client script to prevent spaces and maximum 15 characters on a string field. function onChange(control, oldValue, newValue, isLoading) { if (isLoading || newValue == '') { return; } var str = g_form.getValue('u_equipment...