Margo
(Margo)
2
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: