Hi all,
I have a grid with a date filter on a column. I set up everything and it seems to work:
datafields: [
…
{ name: ‘dc_data’, type: ‘date’, format: ‘dd-mm-yyyy’ },
…
]
and:
columns: [
…
{ text: ‘Data’, datafield: ‘dc_data’, columntype: ‘date’, filtertype: ‘date’, cellsformat: ‘dd-mm-yyyy’, filterable: true, minwidth: 180, cellsrenderer: cellsrenderer},
…
]
Now the problem is when the user tries to select a date range from the column filter (calendar), e.g.: 15/01/2014 – 17/01/2014, it shows the two dates inside the filter box as follows:
15-00-2014 – 17-59-2014
can anybody help me to solve this issue?
thanks
Antonio