Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Hello
on TreeGrid component if i use Hierarchy Data Binding i have no problems but if i need to use Flat Data mapping data are not visible.
If i debug the application i can see that the datasource is popolated but no records are shown inside the treegrid.
the class i use for the data source is the follow:
public class SamplingComponent { public long Id { get; set; } public long IdParentComponent { get; set; }
and the treegrid is the follow
<SfTreeGrid ID="componentGrid" @ref="ComponentGrid" DataSource="@_viewModel.GetSamplingComponents()" TValue="SamplingComponent" ParentIdMapping="IdParentComponent" IdMapping="Id"
please can you check on it?
thank you very much
Maurizio