I have set a custom date format for date columns. But dates are not shown in that format in Firefox. Same dates are shown in correct format in Chrome.
I am using version 3.3 of jqwidgets.
Following is date column config –
{
datafield: 'timestamp',
cellsformat: 'MM/dd/yyyy HH:mm:ss',
exportable: true,
filterable: true,
filtertype: 'date',
width: '15%'
}
And following is the datafields config set in source.
{
name: 'timestamp',
type: 'date'
}
In original data dates are in MM-DD-YYYY HH:mm:ss
format.
In firefox, I think default date format is used, i.e. MM-DD-YYYY HH:mm:ss
.
I cannot understand why it works in chrome and not in firefox.
One more problem is, in firefox, date filters are also not working. Gives following error TypeError: an is null
.
Please let me know if any more details are needed.