I have a grid using a GridDateTimeColumn formatted from a stored procedure as mm/dd/yyyy. The textbox alongside the DatePicker to filter zero supresses in the month and day so Equal To filtering doesn't work. How do I fix this?
<
telerik:GridDateTimeColumn
UniqueName
=
"ShipDate"
DataField
=
"ShipDate"
PickerType
=
"DatePicker"
HeaderText
=
"Ship Date"
DataFormatString
=
"{0:D}"
CurrentFilterFunction
=
"EqualTo"
DataType
=
"System.DateTime"
FilterListOptions
=
"VaryByDataType"
>
</
telerik:GridDateTimeColumn
>
SELECT
StoreNumber,
AO.BoothNumber,
AO.ItemID,
ItemDescription,
CONVERT
(
VARCHAR
,ShipDate,101)
AS
ShipDate, .....