我在Razor上有一个DevExtreme表单,我正在尝试应用验证规则。当另一个字段具有值时,我想根据需要设置字段。
// This should have a value if the other field has it
socialGroup.AddSimple()
.ColSpan(3)
.Label(l => l.Text("Page ID"))
.DataField(it.Clave)
.Editor(ed => ed.TextBox().ID("pageId").Value(it.Valor).Placeholder("Page ID"))
.ValidationRules(v => v.AddPattern().Pattern("^\\d+$").Message("Field must be numeric"));
// This should have a value if the other field has it
socialGroup.AddSimple()
.ColSpan(3)
.Label(l => l.Text("App ID"))
.DataField(it.Clave)
.Editor(ed => ed.TextBox().ID("appId").Value(it.Valor).Placeholder("App ID"))
.ValidationRules(v => v.AddPattern().Pattern("^\\d+$").Message("Field must be numeric"));
我尝试使用Javascript,但无法使其正常工作。