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

Passing a Parameter Dynamically to a Dialog Action Button

Environment

ProductTelerik UI for ASP.NET MVC Dialog
Progress Telerik UI for ASP.NET MVC versionCreated with the 2023.3.1010 version

Description

How can I pass a parameter dynamically to a specified action button of a Dialog before opening the Dialog?

Solution

  1. Create a Button to open the Dialog when clicked.

  2. Get a reference to the hidden Dialog within the Button's Click event handler.

  3. Access the current actions configuration of the Dialog.

  4. Set a new callback function of the Action and pass the desired parameter.

  5. Call the setOptions() method to update the Dialog's actions settings.

  6. Open the Dialog by using the open() method.

    Razor
        @(Html.Kendo().Button()
            .Name("openDialogBtn")
            .Content("Open Dialog")
            .Events(ev=>ev.Click("onClick"))
        )
    
        @(Html.Kendo().Dialog()
            .Name("dialog")
            .Title("Confirm Remove User")
            .Content("<p>Are you sure you want to Remove this User?<p>")
            .Width(400)
            .Modal(true)
            .Actions(actions =>
            {
                actions.Add().Text("Cancel");
                actions.Add().Text("Confirm").Action("onConfirmRemoveUser").Primary(true);
            })
            .Visible(false)
        )

For a runnable example based on the code above, refer to the REPL example on passing a parameter dynamically to a specified action button of the Dialog.

More ASP.NET MVC Dialog Resources

See Also