Ticket T681646
Visible to All Users

Custom edit form for master detail row

created 6 years ago

Hi together,

I want to implement a Grid with a MasterDetail Edit form…

I have found a Question https://www.devexpress.com/Support/Center/Question/Details/Q218913/custom-edit-form-for-master-detail-row in your SupportCenter which is the same as mine.

But I'm looking for an example with Asp.net MVC and Razor .
Is it possible to get one.

Kind Regards
Elke

Show previous comments (4)
DevExpress Support Team 6 years ago

    Hi,

    Thank you for the clarification. As far as I understand, you need to create a custom Edit form. If so, create an Edit Form template and place required extensions into it. Please refer to our Edit Form Template demo illustrating how to accomplish this task.

    Best regards,
    Stanley

    ES ES
    Elke Schreiber 6 years ago

      Hi Stanley,
      I had a look at this example but it is not that what I want.
      I want use a editable Grid with the possibility to open a EditForm like this
                  settings.SetDetailRowTemplateContent(c =>
                  {
                      var keyValue = c.KeyValue;
                      Html.RenderAction("AuditLogDetail", new { key = keyValue });
                  });
      which opens a Detail Page linke this
      @Html.DevExpress().PageControl(settings =>
      {
          settings.Name = "AuditLogDetail" + ViewData["key"];
          settings.Width = Unit.Percentage(100);
          settings.CallbackRouteValues = new { Controller = "AuditLog", Action = "AuditLogDetail", key = ViewData["key"] };
          settings.TabPages.Add("AuditLogPairs").SetContent(() =>
          {
              Html.RenderAction("GetAuditLogPairsPartial", new { partialId = Model.Id });
          });
      }).GetHtml()
      and the method GetAuditLogPairsPartial shoud open my EditForm.
      This is only an example to discribe what I want I'm open for an other way.
      Hope you can help me.
      Kind Regards
      Elke

      DevExpress Support Team 6 years ago

        Hello,

        Thank you for the clarification. The Detail row template is not intended for editing a grid row. This template is used to implement the Master-Detail scenarios such as one shown in our Master-Detail demo. If you wish to customize the grid's Edit form, it is necessary to create an Edit Form template. For this, use the SetEditFormTemplateContent method instead of the SetDetailRowTemplateContent method. You can place any content into this template according to your requirements. I suggest you use the approach from our Edit Form Template demo as a starting point to accomplish this task. You can set the SettingsEditing.Mode property to "EditFormAndDisplayRow" to make the edit form look like a detail row.

        Best regards,
        Stanley

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.