Hello,
I want to have multiple bands in ultrawingrid but all binded to one table. how can i achieve this kind of hierearchy?
Essentially, you want to use a list within a list. I use the following structure:
Dim data As New BindingList(Of ParentObject) Grid.DataSource = data
Where ParentObject is defined as...
Public Class ParentObject ... Public Property Band2 As New BindingList(Of ChildObject) ... End Class
Thanks for your idea