formNoValidate property

bool formNoValidate

Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option.

MDN Reference

Implementation

_i2.bool get formNoValidate => _i4.getProperty(
      this,
      'formNoValidate',
    );
void formNoValidate=(bool value)

Implementation

set formNoValidate(_i2.bool value) {
  _i4.setProperty(
    this,
    'formNoValidate',
    value,
  );
}