I have a problem with this module:
- some imported nodes have fields values no longer fulfilling validation(s)
- saving one field with Editable Views triggers validation to all fields of node, not just for this one field
is it wanted and expected ?

Does somebody know how to stop validation of other fields?

EDIT:

After rethinking case I might be wrong. It can be fault of https://www.drupal.org/project/field_validation module.

Comments

pawel_r’s picture

Category: Bug report » Support request
Issue summary: View changes
joachim’s picture

Status: Active » Fixed

Each field is validated individually:

    // Check generic, field-type-agnostic errors first.
    ctools_field_invoke_field_default($field_instance, 'validate', $entity_type, $entity, $errors);

However, hook_field_attach_validate() is invoked on the whole entity.

I would suggest you clean up the non-validating data! :)

pawel_r’s picture

thanks.

It's Field Validation issue.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.