This does not works if set the dataSource.filter with multiple filters like this.
$("#grid").data("kendoGrid").dataSource.filter(
{
"filters": [{
"field": "ShipCity",
"operator": "ne",
"value": "ShipCity 2"
},
{
"field": "ShipName",
"operator": "ne",
"value": "ShipName 2"
}],
"logic": "and"
}
);
Is there a different way of setting multiple filters?