Date field and date dataprovider is displayed incorrect

jcompagner:
you want to track what exactly?
client side method execution time? why do you need to have a server time for that?
You want to track when the method did start? or how long it toke?

I want to track the performance influence of methods, executed by a certian user, for other users in different time zones.

so then the only thing to store for example in a database is something like

clientid/userid | methodname | elapsed_time

and in another table you have something that maps a clientid/userid to a timezone.

then you dont have to get servertime that looks a bit heavy for me to track method execution (thats also a round trip again)

jcompagner:
so then the only thing to store for example in a database is something like
clientid/userid | methodname | elapsed_time
and in another table you have something that maps a clientid/userid to a timezone.
then you dont have to get servertime that looks a bit heavy for me to track method execution (thats also a round trip again)

Thanks for thinking along Johan, but we also need to know the exact method execution date/time.

ok then insert start and end time instead of elapsed.

And then just the start and endtimes of the client and have that other table that tells you wat the timezone is.