Hello Team,
I make filter basis on column. i just want filter when we select column name and search by name.
but only one filter is working when refresh the page then we able to filter in other column.
check blew GUI and script.
$("#icoSectionSearch").click(function (args) {
var ColumnName, value, obj;
obj = $("#Gantt").ejGantt("instance");
ColumnName = $("#selectedSearchFilter").text().trim();
value = $("#txtSectionSearch").val().trim();
obj.clearFilter();
obj.filterColumn(ColumnName, "contains", value);
});
i want to mange clear filter in same function. how is possible ?