Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1690
XamDateTimeEditor is disabled
posted

Hi,

I have following XamDateTimeEditor (WPF v12.1):

<igEditors:XamDateTimeEditor Name="xamDateTimeEditor1"
   Grid.Row="0"
   Grid.Column="1"
   Width="130"
   HorizontalAlignment="Center"
   VerticalAlignment="Center"
   IsEnabled="True"
   SpinButtonDisplayMode="Always"
   Theme="[current]"
   Value="{Binding SelectedMusicContract.RecordedDate,
   Mode=TwoWay}" />

which has data binding to 

private MusicContract _selectedMusicContract;
public MusicContract SelectedMusicContract
{
   get { return _selectedMusicContract; }
   set
   {
      _selectedMusicContract = value;
      this.RaisePropertyChanged(() => this.SelectedMusicContract);

   }
}

where MusicContract is an entity.

For some reason the control is disabled on my PC and works on another person's PC. What can be a problem ?

Thanks,

Ed