Hello,
The workground is as follow.
Suppose you have a formatter date which converts certain format to other one into the grid. The display date into the grid is the same as the editred one. In setCell, addRowData and setRowData we do not convert the date back to its original format (if formatter is available) since we should do the following when we are in editing mode:
1. convert the date to srcformat after the cell is edited
2. convert then the date from srcformat to newformat using the build in formatter
3. put the converted date into the grid.
This means the following operatins:
A => B => A
Convert A to B and then B to A which does not have sence
I do not know if I explain it Ok.
Instead with the these functions regarding the date is: what you put, is what you see.
Regards
Tony