根据其他字段的更改将字段设置为需求

时间:2018-09-26 07:45:59

标签: c# asp.net-mvc razor devexpress-mvc

我在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,但无法使其正常工作。

0 个答案:

没有答案