Hi everyone,
I have a kendo ComboBox being binded to a json object as follows:
function getTests(element) { //element is just an input
element.kendoComboBox({
dataTextField: "Name",
dataValueField: "Id",
dataSource: {
data: [{ Id: 2, Name: "Test 1" }, { Id: 8, Name: "Test 2" }, { Id: 6, Name: "Test 3" }]
},
placeholder: "Select One",
suggest: true,
filter: "contains",
}); }
And I'm receiving the following error:
Uncaught TypeError: s.data.Query.compareFilters is not a function
from:
kendo.web.js:28607
I'm working with:
kendo.version = '2016.2.714'
Plese give a clue on this
Regards