我正在Angular 7中使用FormIO,并且我不想在表单中显示包含“社会责任”的警告危险(第一个)。
这是我在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>
有帮助吗?
答案 0 :(得分:1)
对于那些仍在寻找答案的人
在您的html中
<formio [form]="form" [options]="options" ></formio>
并在您的文件中
options: Object = {
submitMessage: "",
disableAlerts: true,
noAlerts: true
}
希望有帮助