We're using the XamDataGrid with 'LoadOnDemand'. We have a couple of custom ICondition classes that check to see whether a record has errors or not. For example, we have a RecordHasErrorsCondition that checks to see if either the parent record or, optionally, any of it's child records currently has an error. However, when child records exist, this condition can take a long time to execute the first time, if none of the child records have been previously loaded. However, the only way, any of the records could have an error is if the user has loaded and edited them, so what we'd like to do is skip records that have yet to be loaded or initialized. I see that the record's DataPresenter has an IsLoaded and IsInitiliazed property, but every time I check these properties, they're true [probably because I'm iterating the records which causes them to be loaded and initialized]. Anyway, is there a way for me to programatically check whether a record has been loaded previously, or maybe from the parent level, determine if it's child records have ever been expanded or loaded? If it has been, we'll check for errors, otherwise, we'll skip the child record(s)...
Still looking for answer to this issue. I've reviewed several links for XamDataGrid performance optimization and I've been tirelessly running my VS debugger trying to find an exposed property that might tell me when a record has yet to be initialized. There has to be a way to know when records have been previously loaded or not. Does anyone have an answer for this?