All parts of the TreeViewItem (indicator, text, checkbox) are defined as one big template. Therefore customization of only one part of the template still requires retemplating the whole item.
When retemplating is applied to the treeviewitem and 20+ children in the nodes are loaded, the result is as follow: If you run that on iOS and expand a node you'll see that it crunches the UI for a few seconds and then loads the child nodes, but i also see on our application that it will crash some times and either way gives a bad feel to the UI on iOS
ExpandCollapse Indicator is still visible when deleting all children of a branch
Workaround:
Reser the TreeView ItemsSource
This freezing is not happening if we have less number of records, I have tested
with 20 records. But it may load more than 20 records, I do not have the exact number
where this freezing issue starts to happen.
The issue happens when item template is used.
workaround:
Remove the item template
When we call ScrollItemIntoView to scroll to one of the nodes at the bottom of the tree the app will crash with a "Unspecified Error".
I've set it to load 150 nodes into the tree and when you click the "Test" button it will error (using UWP). If you change it to only load 100 nodes or less it should work.
Currently this could be accomplished through methods.
Please let us know:
Provide an option to allow the checkbox to be rendered to the right of the node's content.
A mock code example:
<RadTreeView CheckBoxHorizontalOptions="End" />