Can you advice me, how to disable default selection in ListView in Chrome browser? When I open ListView in Chrome, the first item of ListView is selected by default. I was trying to call clearSelection on object created this way:
but when I was trying to call
the object did not have this method.
What am I doing wrong?
gListView = $("#listView").kendoListView({ selectable: true, navigatable: true, dataSource: gDrawDataListView, template: kendo.template($("#template").html())});gListView.clearSelection();What am I doing wrong?