BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
function filterDate(btnStatus) { // AÑADIR FILTROS DE FECHAS //filterGrid("FechaPrevista", "28/06/2015", btnStatus.isChecked, ej.FilterOperators.greaterThan); $.each(gridsChild, function (s, e) { var gridId = "#" + e; var gridObj = $(gridId).data("ejGrid"); gridObj.model.filterSettings.filteredColumns = []; gridObj.refreshContent(); var date = new Date(2015, 06, 15, 0, 0, 0, 0); //var dateDouble = date.getTime(); gridObj.filterColumn("FechaPrevista", ej.FilterOperators.greaterThan, date, "or"); onCreateRowChildres(e); }); } |
function filterDate(btnStatus) { $.each(gridsChild, function (s, e) { ------- ------- var date = new Date(2015, 06, 15, 0, 0, 0, 0); gridObj.filterColumn("FechaPrevista", ej.FilterOperators.greaterThan, date, "and", true); }); |