I am using ultraDateTimeEditor of Infragistics Version 6.Through Application I am chaging the Culture by
System.Globalization.CultureInfo ApplicationCulture = new System.Globalization.CultureInfo("de-DE");
System.Threading.Thread.CurrentThread.CurrentCulture = ApplicationCulture;
System.Threading.Thread.CurrentThread.CurrentUICulture = ApplicationCulture;
but This control not showing the dates in culture specific maner . i would like to know whether this control support localization or not if yes then how to set
Hi,
you could try to assign your culture to the formatprovider property of the DateTimeEditor.
Look at the following URL for more details
http://help.infragistics.com/Help/NetAdvantage/NET/2007.3/CLR2.0/html/Infragistics2.Win.UltraWinEditors.v7.3~Infragistics.Win.UltraWinEditors.UltraDateTimeEditor~FormatProvider.html
Andre
I think you need to change the mask on the control to specify that it should localize. Check the help for the MaskInput or InputMask property. If I recall, you have to put something like {LOC} in the beginning of the mask.