Restrict specific characters/symbols from being accepted in field

Hello @Viorel,

You can either add a code to replace symbols while user is typing

fd.field('FieldName').$on('change', function(value) {
    fd.field('FieldName').value = value.replace(/([\/\,\!\\\^\$\{\}\[\]\(\)\.\*\+\?\|\<\>\-\&])/g, "");
});

or add custom validation as described in this post: