Hey i found one bug/problem in kendo ui combo box while using it in cross-site iframe( facebook canvas ) this only happens in IE8(i don't know how is this with other IE versions), while in other browsers is ok(FF, Opera, Chrome).
Here is my combobox creation js code.
$("#test").kendoComboBox({ dataTextField: "text", dataValueField: "value", dataSource: [ { text: "None", value: "0" }, { text: "A", value: "1" }, { text: "B", value: "2" }, { text: "C", value: "3" }, { text: "D", value: "4" } ], filter: "contains", suggest: true});Access denied exception happensin kendo.list.min.js i was testing this using minified and opensourced version so i pulled this line out:
caret = Math.abs(selection.createRange().moveStart(CHARACTER, -element.value.length));
Cheers, PJ