or
var columnMenu = function(e) { var $filterMenu = e.container.find(".k-filter-menu"); var $firstValueDropDown = $filterMenu.find("select:eq(0)"); var firstValueDropDown = $firstValueDropDown.data("kendoDropDownList"); if (!firstValueDropDown.dataSource.view().length) { $firstValueDropDown.closest(".k-widget").hide(); } if (($filterMenu.find(".k-datepicker").length) || ($filterMenu.find(".k-datetimepicker").length)) { firstValueDropDown.value("gte"); firstValueDropDown.trigger("change"); var logicDropDown = $filterMenu.find("select:eq(1)").data("kendoDropDownList"); logicDropDown.value("and"); logicDropDown.trigger("change"); var secondValueDropDown = $filterMenu.find("select:eq(2)").data("kendoDropDownList"); secondValueDropDown.value("lte"); secondValueDropDown.trigger("change"); } };