KendoUI grille filtre format de la date

Dans mon kendo grille, je veux changer le format de la date dans le filtre

Ex: 1/30/2015 Jan 30, 2015

J'ai déjà changer le format de date de Date de Début

                field: "StartDate",
                title: "Start Date",
                width: 30,
                format: "{0:MMM dd, yyyy}",
                parseFormats: "{0:MM/dd/yyyy}",
                headerTemplate: '<label for="check-all"><b>Start Date</b></label>',
                headerAttributes: { style: "text-align: center;" },
                attributes: { style: "text-align:center !important;padding-right: 25px;" }

Code dans mon filtrables

  filterable: {
                extra: false,
                operators: {
                    string: {
                        startswith: "Starts with",
                        eq: "Is equal to"
                    }
                }
            },

Pour la capture d'écran voir ce

Grâce

OriginalL'auteur nojla | 2015-01-30