我在这里http://jsbin.com/pakututana/1/edit发布了问题的重建。
数据应导致 TreeTable 中的 2 级深度节点的呈现。但取而代之的是一个幻影行把它弄得乱七八糟。
有任何想法吗?
谢谢
我在这里http://jsbin.com/pakututana/1/edit发布了问题的重建。
数据应导致 TreeTable 中的 2 级深度节点的呈现。但取而代之的是一个幻影行把它弄得乱七八糟。
有任何想法吗?
谢谢
我看到了你发布的链接。您创建的JSON
内容不适用于TreeTable
让我指出您在代码中犯的一些错误。
检查要点:
1. var tData = {"SessionTransactions":{}} //This is not required its unnecessarily declared
// Use this directly
var tData = {
"":{},
"SessionTransactions":{//Some Value}
};
2. tData = {
"": {},
"SessionTransactions": {
0: {
0: {},
1: {},
2: {},
3: {},
4 :{ //This was missing which leads to the empty row
"__metadata": {},
"Service": {},
"Poi": {}
}
},
1: {
0:{}
}
}
};
3. The second level child with empty rows is because of "__metadata","Service" and "Poi"
0:{
"__metadata": {},
"Service": {},
"Poi": {}
}
更改 json 后立即尝试。我想它可以帮助你
下次使用搜索,要清除 .__metadata = ""; - 财产...