Jquery 剑道MVC日期过滤器定制

Jquery 剑道MVC日期过滤器定制,jquery,kendo-ui,kendo-grid,kendo-asp.net-mvc,kendo-ui-mvc,Jquery,Kendo Ui,Kendo Grid,Kendo Asp.net Mvc,Kendo Ui Mvc,我有一个MVC剑道网格日期头过滤器 part of my date column filter-- .Filterable(filterable => filterable.Extra(true).UI("customDateFilter") .Operators(operators => operators .ForDate(date => date.Clear() .IsGreaterThanOrEqualTo("Is greater than

我有一个MVC剑道网格日期头过滤器

part of my date column filter--
.Filterable(filterable => filterable.Extra(true).UI("customDateFilter")
.Operators(operators => operators
.ForDate(date => date.Clear()
.IsGreaterThanOrEqualTo("Is greater than or equal to")
.IsLessThanOrEqualTo("Is less than or equal to")
.IsEqualTo("Is equal to");
我目前在我的网格中使用MM/yyyy格式,因此搜索日期选项也应该是MM/yyyy。但是,正因为如此,如果我搜索“大于或等于2020年9月”

它省略09/2020,返回10/2020,以此类推。我注意到,如果我将搜索日期格式更改为MM/dd/yyyy并选择09/01/2020,则“大于或等于09/2020”包括09/2020

有没有一种方法可以使用MM/yyyy格式来处理比OreQualto更好和比OreQualto更差的问题

and my js custom function--
function customDateFilter(element) {
    element.kendoDatePicker({
        format: "MM/yyyy",
        dateInput: true,
        start: "year",
        parseFormats: ["MM/yyyy"],
        depth: "year",
        min: new Date(2000, 01, 01)
    });
}