how call bind/read for list view with auto bind false in mvc?
@(Html.Kendo().ListView(Model).Selectable(p=>p.Mode(ListViewSelectionMode.Single))
.Name("listView2")
.TagName("ul")
.ClientTemplateId("template")
.DataSource(dataSource => dataSource.Read(read => read.Action("GetCategoryByParent", "Home").Type(HttpVerbs.Post)))
.AutoBind(false))
@(Html.Kendo().ListView(Model).Selectable(p=>p.Mode(ListViewSelectionMode.Single))
.Name("listView2")
.TagName("ul")
.ClientTemplateId("template")
.DataSource(dataSource => dataSource.Read(read => read.Action("GetCategoryByParent", "Home").Type(HttpVerbs.Post)))
.AutoBind(false))