Hello, I have problems with filtering the SfGrid.
1. One column in my SfGrid contains DateTime and Format="dd.MM.yyyy HH:mm". The date+time is displayed correctly.
I define a filter to 17.09.2018 16:09:00.
The field FilterSettings.Columns[0].Value contains proper value 17.09.2018 16:09:00
Then I invoke following code:
ExportProperties = new ExcelExportProperties();
ExportProperties.ExportType = ExportType.AllPages;
await DefaultGrid.ExcelExport(ExportProperties);
After that, the field FilterSettings.Columns[0].Value contains modified value 17.09.2018 00:00:00
Why the time is cleared after ExcelExport?
2. I use data adapter to get the list of items from database into a variable selectedRecordsCount.Items.
Then I invoke following code:
ExportProperties = new ExcelExportProperties();
ExportProperties.DataSource = selectedRecordsCount.Items;
await DefaultGrid.ExcelExport(ExportProperties);
It seems that ExcelExport ignores my DataSource and tries to get data by it's own using my data adapter and also modified time value (00:00:00).
3. When the reading from a big database takes a few seconds in my data adapter, then sometimes, after pressing Esc, the AutoComplete list for a filter remains on the screen permanently even when switching pages.
It happens when I type in the filter value quicker than the adapter responds and at some moment I press Esc. It doesn't happen every time but happens quite often. Is it a known issue?
Best regards