I would like to make sure that my treeview is showing the correct item in the left-hand navigation (using a SfTreeView) that matches the detail shown on the right. The SfTreeView control datasource is a two-level deep hierarchy, but only the first node of the hierarchy is opened after rendering (even though the node exists and is a child of the second parent node).
protected override void OnAfterRender(bool firstRender)
{
base.OnAfterRender(firstRender);
var node = ItemsTreeView.GetNode($"/build/{SelectedNodeType}/{Id}");
ItemsTreeView.EnsureVisibleAsync(node.Id).Wait();
}