views:

88

answers:

1

I'm using Telerik's RadDateTimePicker to select the time of the event in my web-app (ASP.NET, .NET 3.5).

The application is targeting multiple countries, my date formatting is taken care of based on users' CultureInfo.

There's one problem, I need the time part of the date/time to ALWAYS show in 24 hour format, no matter what CultureInfo is in the Thread.

For 'en-US' it should show 9/23/2010 13:00
For 'ru-RU' it should show 23/9/2010 13:00

Any ideas?

A: 

Try setting RadDateTimePicker.TimeView.TimeFormat = "HH:mm";

bugventure