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

Parents
No Data
Reply
  • 138253
    Offline posted

    Hello Ed,

     

    Thank you for your post. I have been looking into it, but without a sample project and more details of your environment like: OS, theme and etc. I cannot be completely sure what can cause this issue, so if this is still an issue for you, could you please send an isolated sample project, where the issue is reproduced, so I can investigate it further for you.

     

    Looking forward for your reply.

Children