This question is locked. New answers and comments are not allowed.
Hi,
I have the following Code to open the Form to edit the record,
This window is located in one of the Edit form, and When I Click on command Button in Grid, it opens the Window, But
I want to Pass the route Value to the Render action when Window Opens, so it should open the required record.
I have the following Code to open the Form to edit the record,
<% Html.Telerik().Window() .Name("Window") .Title("(Edit)") .Content(() => {%> <% Html.RenderAction("Edit", "Users"); %> <%}) .Width(700) .Height(350) .Draggable(true) .Modal(true) .Visible(false) .Render();%>This window is located in one of the Edit form, and When I Click on command Button in Grid, it opens the Window, But
I want to Pass the route Value to the Render action when Window Opens, so it should open the required record.