hi
My Data doesn't load in tree view.
please see my source code first.
Controler:
View:
i trace the result with firebug and attach the image.
i see my data in Firebug --> Net -->XHR --> Json
but my data don't show in tree view.
Any One?? Any Idea???
My Data doesn't load in tree view.
please see my source code first.
Controler:
public JsonResult LoadOrganizationChart([DataSourceRequest] DataSourceRequest request)
{
var employee = EmployeSystemEntityOperator.GetEntityListOf<
OrganizationChart
>();
DataSourceResult result = employee.ToDataSourceResult(request);
return Json(result,JsonRequestBehavior.AllowGet);
}
View:
@using Kendo.Mvc.UI
@model IEnumerable<
Ets.Data.EmployeeSystem.OrganizationChart
>
@(Html.Kendo().TreeView().Name("treeview")
.DataTextField("NodeName")
.DataSource(dataSource => dataSource.Read(read => read.Action("LoadOrganizationChart", "OrganizationChart")))
)
i trace the result with firebug and attach the image.
i see my data in Firebug --> Net -->XHR --> Json
but my data don't show in tree view.
Any One?? Any Idea???