This is a follow-up on trouble catching the InvalidColumnKeyException. Another posting claims the behavior is "by design" but in my scenario it doesn't seem like a good design.
(Earlier post http://es.infragistics.com/community/forums/t/90920.aspx)
As near as I can tell, the XamGrid occasionally sends out the exception (Infragistics.Controls.Grids.InvalidColumnKeyException) to be thrown on the dispatcher at a later, more unpredictable time. This happens via a private method Infragistics.Controls.Grids.XamGrid.ThrowInvalidColumnKeyException(). The result is that the exception can't be easily handled. Appropriate exception handling might include rebuilding the list of XamGrid columns in a different way that would exclude the invalid key. Hopefully the eventual exclusion of the key would not leave the XamGrid in an unpredictable or inconsistent state.
So here is my scenario. I have a XamGrid which at one point in time used a bound column with a given Key but since that time the programming has changed so the underlying column data no longer exists. However, when deserializing a previously saved column layout (via PersistenceManager.Load), the obsolete column key is encountered, albeit briefly. But there is enough corner-case logic in place that the columns can be rejected, eventually replacing them with the new programming defaults . Indeed, it is easy enough to catch other exceptions that are thrown in PersistenceManager.Load such as InvalidPersistenceGroupException. That type of exception is well-behaved and doesn't get thrown via the dispatcher and so it allows corner-case logic to be executed.
Would you agree that it is not ideal for PersistenceManger.Load to crash the application by raising an exception on the dispatcher? Is there a way to change the behavior if the unbound key is encountered via the method "PersistenceManger.Load"? Is there a workaround I can use in the meantime?
Thanks Konstantin.
I was able to test the service release today.
I no longer get those InvalidColumnKeyException's on the Dispatcher. In fact, PersistenceManager.Load() seems to no longer complain at all when it encounters column keys in the persistence data that are now invalid. This approach seems fine to me...
Hello David,
Development issue 207784 is now resolved in the latest Service Release. You can follow the steps below to download it:
1. View My Keys and Downloads: https://es.infragistics.com/my-account/keys-and-downloads2. Log in to the Infragistics web site if you are not already logged in.3. Select the product you would like to download a service release for.4. Select the “Service Releases” tab.5. Select the download (e.g. Infragistics WPF 2016 Vol. 1 - Service Release)
Please do not hesitate to contact us if you have any questions.
Hi David,
I've create a case on your behalf with ID CAS-165100-H5D9T4. Your case is also linked to development issue 207784.
You can view the status of all development issues connected to this case from the "Development Issues" tab, when viewing this case on the "My Support Requests" page of our website.
Hi,
I did a brief research on this today and wasn't able to find a good reason for XamGrid to be throwing the exception asyncronously. I'm submitting a development issue about this so we could look at it in more detail and ultimatly getting rid of the async throwing of exception.
I'll provide more details about the development issue shortly.