Hi, I've been pounding away at a problem dealing with DataGrids and DateFields for a few days now. The problem is that I want to send and receive Dates from the server using milliseconds. However, in the data grid I want to display and edit Dates in MM/DD/YYYY format. One solution is to convert milliseconds to Dates and from Dates to milliseconds right as I send or receive data - and let the datagrid deal just with Dates. That is what I finally did to get it to work. What I would rather do is to not have to convert the data at the service calls/results, but to let the datagrid renderer and editors handle the conversion as necessary. However, I tried changing the get/set data methods on the DateField (the editor) and the Label/TextField (the renderer), but could never get something to work that would both display the Date and edit it in the correct format. I thought I was understanding which methods need to be modified, but I realize I'm not. Could someone please help me understand which methods need to be changed to allow for the data to be stored in milliseconds in the Array Collection, but be displayed and edited in the Date format?
Thank you very much for any help, John

