Class People
Property Name As String ()
Property IsAssigned As Boolean
End Class
Class Assignment
Property ManagerName As String ()
Property AssignmentDetails As String ()
Property AssignedToList As List (Of People)
End Class
I have a requirement where i have a Telerik grid which is bound to a list of a custom collection. The structure of the collection is
List (Of Assignment), which is bound to my grid. I have a couple of bound columns which are bound to the string properties. I also have a template column, where i want to have another grid, which gets bound to AssignedToList. This binding should be two-way. How can I achieve this ?
Property Name As String ()
Property IsAssigned As Boolean
End Class
Class Assignment
Property ManagerName As String ()
Property AssignmentDetails As String ()
Property AssignedToList As List (Of People)
End Class
I have a requirement where i have a Telerik grid which is bound to a list of a custom collection. The structure of the collection is
List (Of Assignment), which is bound to my grid. I have a couple of bound columns which are bound to the string properties. I also have a template column, where i want to have another grid, which gets bound to AssignedToList. This binding should be two-way. How can I achieve this ?