In wpf , the date column in XAMDATAGRID displays the date in ( MM/DD/YYYY ) , I wanted it to be displayed like ( YYYY/MM/DD)
Awaiting for your reply
Thank You
Hi Jeevan,
Thank you for your post. I have been looking into your requirement and my suggestion is to apply mask for the XamDateTimeEditor control like e.g.:
<Style TargetType="{x:Type igEditors:XamDateTimeEditor}" >
<Setter Property="Mask" Value="yyyy/mm/dd" />
</Style>
Let me know, if you need any further assistance on this matter.
Thank You for your reply ,
The sorting in the date- time column of the xamdatagrid happens month wise , i want it to happen according to date wise ascending and descending .