When I am using filter in grid the filter on date column does't work.
When you select one date shows all or sometimes does not show any
Below it's my code:
html.file:
<e-column field="creationDate" headerText="Data" textAlign="left" type="date" format="dd.MM.yyyy HH:mm:ss" [filter]='filter'></e-column>
ts. file:
public filterOption: FilterSettingsModel = { type: 'Excel' };
public filter: IFilter = {
params: {
format: 'dd.MM.yyyy HH:mm:ss'
}
};
this.dataDate= DataUtil.parse.parseJson(this.
dataDate
);