Hi,
I have the following listview below - what I want to have is that at every reload ($("#gridMitglied").data("kendoListView").dataSource.read();) and after paging
the first row should be visible (listview Scrolling) - the listview is not selectable!
now after a reload or changing the page not the first row is visible which is not usable...
@(Html.Kendo().ListView<SEARCH_GPDB>() .Name("gridMitglied") .TagName("div") .ClientTemplateId("template") //.ClientAltTemplateId("templatealt") //.Selectable(ListViewSelectionMode.Single) .Pageable(pageable => pageable .Refresh(true) .ButtonCount(5) ) .DataSource(dataSource => dataSource .Ajax() .Read(read => read.Action("Mitglied_Read", "Suche").Data("Suche")) .PageSize(20) ) .Pageable())