Hi,
I'm looking for a method to validate the grid data. I'm using 8.1.
I saw that there is an IDataErrorInfo sample, but it works with DataTable capabilities I don't have.
I'm using Linq2Sql objects which are simple objects and collections.
Is there any sample of using IDataErrorInfo with custom objects?
Thanks
Make sure your objects implement IDataErrorInfo
Then, your grid should be aware of validation errors
Thanks, it is much more simple than I imagined. I just had to use explicit implemantation in order not to see an "Error" grid column.