New to Telerik UI for ASP.NET CoreStart a free 30-day trial

Using DropDownList field for making another property required or not required

Environment

Product Version2022.3.913
ProductTelerik UI for ASP.NET Core Grid

Description

How to dynamically change if a field is required in PopUp Edit Mode of a Telerik UI for ASP.NET Core Grid by using another field with DropDownList Editor?

Solution

The example below is implemented as per the following steps:

  1. Use a DataAnnotation attribute for the DropDownList to point to the desired Editor Template for the field.
  2. Handle the Change Event of the DropDownList.
  3. In the Event handler, get the input field that will be set as required or non-required, depending on the value of the DropDownList.
  4. Use jQuery to set the required property to true or false.

The following example demonstrates the steps described above.

TestEditor.cshtml
@model string

@(Html.Kendo().DropDownList()
          .Name("EnableShipName")
          .BindTo(new List<string>() {
              "ShipName is required",
              "ShipName is not required"
          })
         .HtmlAttributes(new { style = "width: 100%" })
         .Events(e => e.Change("onDDLChange"))
        )

For more examples on Grid editing, see the following demos:

More ASP.NET Core Grid Resources

See Also