I am using spring mvc with jquery grid. I have a date field in my row. in Json I get the date as
"releaseDate":1406399400000
But it shows as "NaN/NaN/NaN" in the table. In my bean class I keep it as java Date format. grid configuration column model is as follows.
colModel:[
{name:'name', label: 'Product Name', width: 300},
{name:'releaseDate', label: 'Release Date',formatter:'date',formatoptions: {newformat:'m/d/Y'}, width: 300}
],
I am using jqgrid 4.6. Any help is really appreciated.
Thank You!