Hi Emad,
Thank you for contacting Syncfusion support.
We have checked the reported query from our end. We would like to let you know that you can access the model class property (i.e, ID) by below code,
private void TreeView_ItemTapped(object sender, Syncfusion.XForms.TreeView.ItemTappedEventArgs e)
{
var id = ((e.Node as TreeViewNode).Content as StagingModel).id;
DisplayAlert("", "Tapped item ID is " + id, "Ok");
} |
Please let us know if still facing the same issue. If not, please provide a sample based on your requirement and revert us back.
Regards,
Lakshmi Natarajan