我有树面板的问题。问题是孩子没有表演。我使用 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\"}
]}
]"}