In a virtualized grid (EnableVirtualization="false" Height="400" AllowGrouping="true") the footer only shows if I set an initial group of columns before data loading and it doesn't update if I delete the group and select new data.
If the grid is not virtualized, the footer shows and actualizes without problem.
Hi Rahul,
Could you check your project sample loading data after a button click instead of using OnInitialized? The aggregates are not shown.
SfGrid<Order> grid;
public List<Order> GridData { get; set; }
protected override void OnInitialized()
{
}
private async Task LoadData()
{
List<Order> Order = new List<Order>();
int Code = 10000;
for (int i = 1; i < 10000; i++)
{
Order.Add(new Order(Code + 1, "ALFKI", i + 0, 2.3 * i, false, new DateTime(1991, 05, 15), "Berlin", "Denmark", new DateTime(1996, 7, 16), "Kirchgasse 6"));
Order.Add(new Order(Code + 2, "ANATR", i + 2, 3.3 * i, true, new DateTime(1990, 04, 04), "Madrid", "Brazil", new DateTime(1996, 9, 11), "Avda. Azteca 123"));
Order.Add(new Order(Code + 3, "ANTON", i + 1, 4.3 * i, true, new DateTime(1957, 11, 30), "Cholchester", "Germany", new DateTime(1996, 10, 7), "Carrera 52 con Ave. Bolívar #65-98 Llano Largo"));
Order.Add(new Order(Code + 4, "BLONP", i + 3, 5.3 * i, false, new DateTime(1930, 10, 22), "Marseille", "Austria", new DateTime(1996, 12, 30), "Magazinweg 7"));
Order.Add(new Order(Code + 5, "BOLID", i + 4, 6.3 * i, true, new DateTime(1953, 02, 18), "Tsawassen", "Switzerland", new DateTime(1997, 12, 3), "1029 - 12th Ave. S."));
Code += 5;
}
GridData = Order;
}
Hi Daniel,
Thanks for sharing the details.
We have considered your query as a bug and logged the defect report “Footer Aggregate is not rendered while dynamically assigning the grid data source with Virtualization enabled grid” for the same. Thank you for taking the time to report this issue and helping us improve our product. At Syncfusion, we are committed to fixing all validated defects (subject to technological feasibility and Product Development Life Cycle) and will include the fix in our upcoming patch release which is expected to be rolled out on or before the end of May 2022. Until then we appreciate your patience.
You can now track the current status of your request, review the proposed resolution timeline, and contact us for any further inquiries through this link.
Regards
Rahul
Hi Daniel,
We are glad to announce that our weekly patch
release 20.1.0.56 is rolled out and a fix for the issue has been included in this
release. Kindly upgrade to the latest version to resolve the reported issue.
NuGet: https://www.nuget.org/packages/Syncfusion.Blazor/
Release
notes: https://blazor.syncfusion.com/documentation/release-notes/20.1.56?type=all#grid
We thank you for your support and appreciate
your patience in waiting for this release. Please contact us if you require any
further assistance.
Regards,
Vignesh Natarajan