Is it possible to somehow expand all rows when loading data?
I was looking at this example (Blazor DataGrid self-reference hierarchy) and tried to call grid.ExpandRows(allItems); but it didn't do anything?
Should I just iterate somehow thru the grid one by one? I also tried to expand inside RowRender (by calling grid.Expand(args.Data)) but that didn't seem to work either.