After reading the documentation I noticed that there is support to bind columns to particular data/control types, but I was wondering if it were possible to bind a column/row to a custom user control that I have built that is comprised of various other controls.
Is this possible?
Thanks!
Lance
2 Answers, 1 is accepted
0
Julian Benkov
Telerik team
answered on 04 Jun 2007, 01:01 PM
Hello Lance,
RadGridView can bind to any IList or IBindingList object types. If this type includes some sub objects, RadGridView can directly work with them, but in general the grid should be bound to some collection object like IList or IBindingList .
In your case you can bind custom IBindingList objects to RadGridView and also bind it to your custom user control. The IBindingList interface will guarantee the synchronization between RadGridView and your custom control.