So lets say I have a set of entities
ObjectModel1 - Id, Name, List<ObjectModel2> Children
ObjectModel2 - Id, Name, Note, DateModified, ModifiedBy
So now my dataset might return
ObjectModel1 om1a
ObjectModel2 om2a
ObjectModel2 om2b
ObjectModel1 om1b
ObjectModel2 om2c
ObjectModel2 om2d
This would come down as a List<ObjectModel1> object with the ObjectModel1 objects in the list having the ObjectModel2 objects as children.
I would like to display this so that each of the ObjectModel1 objects are displayed as separate trees with all of the data from each ObjectModel2 object being displayed when the ObjectModel1 trees are expanded.
So, first of all, is this possible with the Kendo treeview, and if not, what would we use? Second, even if it is possible, is there a better UI component to do the above?