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

Displaying a Validation Summary in a Dialog

Environment

ProductTelerik UI for ASP.NET Core Dialog
Progress Telerik UI for ASP.NET Core versionCreated with the 2022.2.621 version

Description

How can I show a validation summary in the Telerik UI for ASP.NET Core Dialog?

Solution

  1. Set an initial HTML content within the Dialog which will act as a container for the error messages.
  2. Get the reference of the validator and attach a handler to the validate event through the .bind() configuration method.
  3. Within the handler, assess if any errors have occurred by using the .errors() method. Based on the evaluation, append the error messages to the content of the Dialog and open it.
Index.cshtml
    <form id="myform">
        <input name="username" required /> <br />
        <input name="password" required /> <br />
        <button>Validate</button>
    </form>

    @(Html.Kendo().Dialog()
            .Name("SMEValidationSummary")
            .Title("SME Validation Summary")
            .Closable(false)
            .Content("<div class='errors'></div>")
            .Width(400)
            .Modal(true)
            .Visible(false)
            .Actions(actions =>
            {
                actions.Add().Text("OK").Primary(true);
            })
    )

For the complete implementation of the suggested approach, refer to the following Telerik REPL example.

More ASP.NET Core Dialog Resources

See Also