florin.g wrote:
I'm using date yet date loses precision.
If I understand correctly you want to use a DateField to store and edit a Timestamp?
DateField won't work because it uses SimpleDateFormat to format the request value and SimpleDateFormat doesn't support nanoseconds, so you loose precision.
Why not use LongField instead? regards bob
