The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
hi, Anyone help me on how to append more than 1 datatables into single GridGroupingControl? Can this be done or is it feasible? I would really appreciate if there is sample code as reference. thanks alot :)
Best Regards
Vincent
ADAdministrator Syncfusion Team November 16, 2004 09:22 AM UTC
If the DataTables are in the same daatset. you can just display them by setting teh DataSource to the DataSet.
Dim ds As New DataSet("SomeDataSet")
ds.Tables.Add(dt) ''DataTable 1
ds.Tables.Add(dt1) ''DataTable 2
Me.gridGroupingControl1.DataSource = ds