Open akhanalcs opened 1 year ago
Support for Master/Detail data via a Detail-Template would be awesome. 🚀
<QuickGrid Items="@Data.People" MasterDetail="true">
<PropertyColumn Property="@(c => c.PersonId)" Sortable="true" />
<PropertyColumn Property="@(c => c.FirstName)" Sortable="true" />
<PropertyColumn Property="@(c => c.LastName)" Sortable="true" />
<MasterDetailTemplate>
<QuickGrid Items="@GetDetailRowData(context)">
<PropertyColumn Property="@(c => c.OrderId)" Sortable="true" />
<PropertyColumn Property="@(c => c.OrderName)" Sortable="true" />
<PropertyColumn Property="@(c => c.Price)" Sortable="true" />
</QuickGrid>
</MasterDetailTemplate>
</QuickGrid>
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process.
Any update? This is must feature.
Would love to see this feature. We're coming from BlazorTable, which does have support for this but now has a deprecation notice
Is there an existing issue for this?
Is your feature request related to a problem? Please describe the problem.
Quickgrid is a great tool and we use it extensively at our company.
One thing that's sorely missing for us is the ability to expand row to show more information.
Let me explain more of what I mean. Let's say a grid shows a list of orders and I wanted to expand an individual order to see order details like what products are inside this order. Currently, I found no way to do this. For eg:
Describe the solution you'd like
Ability to expand data rows using some RowTemplate or something?
Additional context
For a complete example in some 3rd party component library, take a look at this: https://blazor.radzen.com/master-detail-hierarchy