
Hi Neo ,Greetings from Syncfusion supportQuery : Date column filter getting stuck.Based on your attached screenshot we suspect that you are binding remote data to the EJ2 Grid. We checked in our sample by binding remote data, but we did not face the mentioned issue when we filter the date column.To find out the root cause of an issue we need the following details,1. Have you bind remote data to the EJ2 Grid? If yes, please share the adaptor details.2. Share the complete grid code example.3. What type of data(Date object or string) that you binded to the Date column?RegardsPrasanna Kumar N.S.V
|
Order.service.ts
return this.http
.get(`${this.BASE_URL}?${pageQuery}${sortQuery}${filterQuery}&$count=true`)
.pipe(map((response: any) => response.json()))
.pipe(map((response: any) => {
return state.dataSource === undefined ? (<DataResult>{
result: DataUtil.parse.parseJson(response['value']),
count: parseInt(response['@odata.count'], 10),
}) : DataUtil.parse.parseJson(response['value']); // convert from string type
}))
.pipe(map((data: any) => data));
}
} |