如何在FormIO中隐藏警报危险?

时间:2019-04-09 15:15:01

标签: angular formio

我正在Angular 7中使用FormIO,并且我不想在表单中显示包含“社会责任”的警告危险(第一个)。

enter image description here

这是我在form-io.component.ts

中声明的表单
form= {
components: [
  {
      type: "textfield",
      input: true,
      tableView: true,
      inputType: "text",
      inputMask: "",
      label: "Societe",
      key: "societe",
      placeholder: "societe",
      multiple: false,
      defaultValue: "",
      protected: false,
      unique: false,
      persistent: true,
      validate: {
          required: true,
          minLength: 1,
          pattern: "",
          custom: "",
          customPrivate: false
      },
      conditional: {
          show: "",
          when: null,
          eq: ""
      }
  },
  {
    input:true,
    label:"Validate",
    tableView:false,
    key:"ValidateFournisseur",
    size:"md",
    block:false,
    action:"submit",
    disableOnInvalid:true,
    theme:"primary",
    type:"button",   
    hidden:false 
  } 

这是我的form-io.component.html

<formio [form]="form"></formio>

有帮助吗?

1 个答案:

答案 0 :(得分:1)

对于那些仍在寻找答案的人

在您的html中

<formio [form]="form" [options]="options" ></formio>

并在您的文件中

options: Object = {
  submitMessage: "",
  disableAlerts: true,
  noAlerts: true
}

希望有帮助