Esempio n. 1
0
 public void OnChangeBase()
 {
     //this should just defer these onloads to the on changes
     RecordEntryViewModel.RefreshVisibility();
     OnPropertyChanged("ValueObject");
     OnPropertyChanged("Value");
     //Removed On Change Validation Because Some Do Service Connections (XrmRecordConfiguration) To Validate
     //And Caused Selection To Delay
     //So Just Validate On Save
     //Validate();
     OnChange();
     OnChangeDelegate(this);
 }
 public void OnChangeBase()
 {
     //this should just defer these onloads to the on changes
     RecordEntryViewModel.RefreshVisibility();
     CallOnPropertyChangeEvents();
     //Removed On Change Validation Because Some Do Service Connections (XrmRecordConfiguration) To Validate
     //And Caused Selection To Delay
     //So Just Validate On Save
     //Validate();
     OnChange();
     OnChangeDelegate(this);
     if (!lastValidationResult)
     {
         DoOnAsynchThread(() => Validate());
     }
 }