Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
710
How to add rows with IList<T> data source
posted

First of all, I am fairly new to .NET and especially to the infragistics controls, so this might be an obvious question, I just haven't stumbled on the answer yet

 I have a data grid that is bound to an IList<T>-based class at runtime.  The datagrid shows and saves the data correctly.  However, when the user tries to add by entering data in the bottom-most row  I get an error saying that it can't add a row because the underlying data source doesn't support adding new rows.  

 my IList<T> does support add, but maybe that is not what the datagrid is looking fo.  (The probalby has to be more to it that IList.add() since it needs to know what sort of object to add.)  

 So how so I make this work?

 thanks