When use link inside of a form-list for delete a record, the fromDate which is a date-time field keeps a formatted value in hidden form as below. In the example of demo.moqui.org, it is a plain string like "1393454169956". The formatted one has problem since it is timezone related.
<input type="hidden" value="TEST1" name="exampleId">
<input type="hidden" value="2014-02-27 06:36:09.956" name="fromDate">
<input type="hidden" value="100001" name="exampleFeatureId">
So How to make it as plain string?