How to custom Filter to have DATE FROM and DATE TO?

1 Like

You’ve missed this article:

1 Like

Almost!
What if the column to compare is not DateTime but string?

The example is for DateTime - if you have strings you should parse them to DateTime.

Thank you very much!
As per your advice, I was able to use Textbox to solve it.

Question:
(1) How to follow Filter style to have a fixed Order by DATE then SKU NO?
(2) Any chance on current Pager to show total record count, or to get the value?

You can add property names to OrderBy coma separated. The pager cannot show total records count - you can get the total count using Count() method of the DataGrid View property. Check footer totals demo for reference.

1 Like

Advice is clear and it's working very well!