bietkul / react-native-form-builder

Handle your forms in a smart way

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Trigger validation on button clcik

DalbirKaur opened this issue · comments

I am unable to show validation message on button click. Kindly let me know how can I achieve this.

this code will work


  // Returns the values of the fields and auto Validate
  getValuesValidate() {
    const values = {};
    Object.keys(this.state.fields).forEach((fieldName) => {
      const field = this.state.fields[fieldName];
      if (field) {
        values[field.name] = field.value;
      }
      this.onValueChange(field.name,field.value);
    });
    return values;
  }