views:

42

answers:

1

i have a gridpanel with a datefield column, when my application is in english the datefield is working fine, but when my application is using french my datefield language is changed to french but the time doesn't change in the gridpanel cell. so any idea?

A: 

Are you looking for the time zone to change? If so thats unrelated to language settings. You need to look at converting your time to the CET format.

So all you need to do is take your DateTime.Now.Hour + 2 and you have Central European Time ;)

Yoda