Hi,
I was wondering if it's possible to change the language of the RadDateTimePicker in the GridDateTimeColumn.
I've managed to get a date in the correct format by setting this in the PageLoad:
But all the other text is still in english.
Does anyone know a way to change that?
Sincerely
I was wondering if it's possible to change the language of the RadDateTimePicker in the GridDateTimeColumn.
I've managed to get a date in the correct format by setting this in the PageLoad:
System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture(
"nl-nl"
);
System.Threading.Thread.CurrentThread.CurrentUICulture = System.Globalization.CultureInfo.CreateSpecificCulture(
"nl-nl"
);
But all the other text is still in english.
Does anyone know a way to change that?
Sincerely