RadzenTree with checkboxes

Hi. I have a RadzenTree control, with checkboxes, inside RadzenTabs. The "Selected" property of the RadzenTreeLevel control seems to work fine, but if I select an item from the tree, go to a different tab, and then come back, the selected item is highlighted (selected), but its checkbox is not checked. The same is true if I'm trying to set the selected item programmatically.
Is there a way to "check" the checkbox of a selected tree item, or will I need to work with the item template?

<RadzenTabs>
                <Tabs>
                    <RadzenTabsItem Text="Users">
                        <RadzenTree Data=@ViewModel.OuTree
                                    AllowCheckBoxes="true"
                                    AllowCheckParents="false"
                                    @bind-Value=@ViewModel.SelectedUserOu
                                    Expand=@ViewModel.LoadSubOus
                                    Change=@ViewModel.OnChange
                                    Style="width: 100%; height: 300px">
                            <RadzenTreeLevel TextProperty="Name" Expanded="x => true"/>
                        </RadzenTree>
                        </RadzenTabsItem>
                    <RadzenTabsItem Text="Disabled Users">
                           
                    </RadzenTabsItem>
                    
                </Tabs>
            </RadzenTabs>

Thanks,
Robledo

Hola
Tendrías que trabajar con el atributo CheckedValues el cual es un subconjunto del atributo Data, aún así es necesario dar clic a la casilla del checkbox para que este se active

<RadzenTree Expand=@OnExpand
										AllowCheckBoxes="true"
										Data=@RolesPrincipales
										AllowCheckParents="false"
										AllowCheckChildren="false"
										CheckedValues="@CheckedValues"
										CheckedValuesChanged="@(value => InvokeOnChangeCheckedValues(value))">
					<RadzenTreeLevel Text="@GetTextForNode"
													 Template="@RolTemplate"
													 Expanded="@(value => false)" />
				</RadzenTree>

Hi, @Robledo_Pazotto, did you find solution for this issue?