Home › Forums › WinForms controls › Xceed Grid for WinForms › DetailGrid and IList › Reply To: DetailGrid and IList
The problem comes from the fact that IList<> does not implement IList, so it returns a List, and the grid does not support this binding.
You need to use List<>, which implements IList, which the grid supports.
Imported from legacy forums. Posted by André (had 2381 views)