Hello,
I display a list of categories of books and for each, I display as a sub collection, all the book in it.
I would like to be abble to add a book to a category but there is no "add" row for the childs fieldLayout...How can I perform this ?
There are couple of things that you need to ensure in order to have an AddNewRow in a fieldlayout
1. Set the AllowAddNewRecord property of the FieldLayout's Settings
2. The underlying collection should implement IBindingList interface
3. The underlying class (if you bind to one) should have a parameterless constructor
Thanks for the reply,
:-(