I am using Visual Studio 2019 c#
I have a telerik radgrid which has a column named StageStDate which is in string format but shows a date in format dd-mmm-yy. This column has filtering enabled with a date picker.
I have a hidden column named StageStartDate which is a replicate of StageStDate but is a date column and in format DD/MM/YYYY.
As StageStDate wont filter correctly as its a string format, when user select a date for this column from filter I would like the filtering to apply to the StageStartDate column, how can I achieve this please?
On ItemCommand I have changed the Pair Second to StageStartDate instead of StageStDate
but for some reason this makes the filterExpression blank.