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
Hello Elke,
As Nick mentioned in the Q218913 thread, a master grid knows nothing about the detail grid. That's why the feature discussed there cannot be built in the grid. Would you please clarify whether you need the Editing in a new window example in ASP.NET MVC or you wish to customize a detail grid's edit form? In the second case, it is sufficient to specify the EditForm template of a detail grid.
Hi Paul,
in my case I want to use the grid with a command col that opens my custom EditForm as shown Master-Detail Exampl.
But my Detail should be the EditForm with an Ajax save functionality.
The EditForm should be opened as Detail.
settings.SetDetailRowTemplateContent(c => { Html.RenderAction("EditCheckAcceptance"); //, new { CustomerID = DataBinder.Eval(c.DataItem, "Id") } });
Kind regards
Elke
Hello,
The Detail row template is intended to show a detail grid but not to insert/update/delete a grid row. Unfortunately, your task is still unclear to me. What do you mean by "The EditForm should be opened as Detail"? The example mentioned in the Custom edit form for master detail row thread illustrates how to use a separate window to edit a grid row. Do you need to use an external edit form to edit a master or detail grid row? If so, use the approach from our External Edit Form demo. Otherwise, describe your task in greater detail. Some screenshots illustrating the expected result will greatly help me understand your goals and provide you with a solution.
Best regards,
Stanley
Hi Stanley,
it's quite easy what I want, I have data rows and each record has one single complex property. I have attached a screenshot from the EditForm of this single complex data.
And my question is how can I make a editable grid with the possibility to cklick in the row like MasterDetail or InlineTabs to open the EditForm for display or edit the data.
I hope you can help me.
Kind regards Elke
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
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
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