树面板ExtNet不会加载孩子

时间:2012-11-19 06:51:06

标签: tree extjs4

我的树面板有问题。 问题是孩子不显示。 我用的是extnet剃须刀引擎。

此代码在文件cshtml中:

TreePanel treePanelParent = X.TreePanel()
   .ID("treePanelParent")
   .Height(200)
   .RootVisible(false)
   .Root(rt => rt
   .Add(Html.X()
   .Node()
   .NodeID("0")
   .Text("Click Parent Location")))
   .Store(st => st
   .Add(X.TreeStore()
   .Proxy(px => px
   .Add(Html.X()
   .AjaxProxy().Json(true)
   .Url(Url.Action("GetParentDatas", "Location"))
   .Reader(reader => reader.Add(Html.X().JsonReader()
   .Root("data")
   .IDProperty("Id")))))
));
treePanelParent.GetRootNode().Expand(true);

我有两个孩子的父母。

这是控制器:

        public ActionResult GetParentDatas() {
            NodeCollection nodes = new NodeCollection();

            Node Node = new Node();
            Node.Text = "satu";
            Node.Icon = Icon.Map;
            Node.Leaf = false;
            Node.NodeID = "1";

            Node Node3 = new Node();
            Node3.Text = "tiga";
            Node3.Icon = Icon.Map;
            Node3.Leaf = false;
            Node3.NodeID = "3";

            Node Node2 = new Node();
            Node2.Text = "dua";
            Node2.Icon = Icon.Map;
            Node2.Leaf = true;
            Node2.NodeID = "2";

            Node.Children.Add(Node2);
            Node.Children.Add(Node3);
            return Json(new { data = nodes.ToJson() }, JsonRequestBehavior.AllowGet);
    }
如果我指挥控制器,

这种格式的json代码:

{"data":"[
   {id:\"1\",iconCls:X.net.RM.getIcon(\"Map\"),text:\"satu\",children:[
      {id:\"2\",leaf:true,iconCls:X.net.RM.getIcon(\"Map\"),text:\"dua\"},
      {id:\"3\",iconCls:X.net.RM.getIcon(\"Map\"),text:\"tiga\"}
   ]}
]"}

1 个答案:

答案 0 :(得分:0)

最后我得到了答案..

我只是在控制器中更改代码返回。

之前:

return Json(new { data = nodes.ToJson() }, JsonRequestBehavior.AllowGet);

成为:

return Content(nodes.ToJson());

并在cshtml中删除

.Root("data")