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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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:

Snippet
public class SamplingComponent
{
    public long Id { getset; }
    public long IdParentComponent { getset; }

and the treegrid is the follow

Snippet
<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