I hope you can help me, I have a structure like this:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<div class="sfcode">- root A<br /> -child_A1<br /> -child_A1_1<br /> -child_A1_2<br /> -child_A1_3<br /> -child_A2<br /> -child_A2_1<br /> -child_A2_2<br /> -child_A2_3<br /> <br /> - root B<br /> - child_B1<br /> -child_B1_1<br /> -child_B1_2<br /> -child_B1_3</div> |
But when I show the data in TreeGrid, it shows like this:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<div class="sfcode">- root A<br /> -child_A1<br /> <br /> -child_A2<br /> -child_A1_1<br /> <br /> - root B<br /> - child_B1<br /> -child_B1_1<br /> -child_B1_2<br /> -child_B1_3<br /> -child_A1_2<br /> -child_A1_3<br /> -child_A2_1<br /> -child_A2_2<br /> -child_A2_3</div> |
Anybody knows why..??? please help, I search information about this error but don`t have luck…
here the code of my json string:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<div class="sfcode">{"total":1,"page":null,"records":18,"rows":[<br /> {"cell":["Parent A","ubicacion","0","null","false","false","true"]},<br /> {"cell":["Child A1","ubicacion","1","1","false","false","true"]},<br /> {"cell":["Child A2","ubicacion","1","1","false","false","true"]},<br /> {"cell":["Child A1_1","ubicacion","2","2","true","false","true"]},<br /> {"cell":["Parent B","ubicacion","0","null","false","false","true"]},<br /> {"cell":["Child B1","ubicacion","1","5","false","false","true"]},<br /> {"cell":["Child B1_1","ubicacion","2","6","true","false","true"]},<br /> {"cell":["Child B1_2","ubicacion","2","6","true","false","true"]},<br /> {"cell":["Child B1_3","ubicacion","2","6","true","false","true"]},<br /> {"cell":["Child A1_2","ubicacion","2","2","true","false","true"]},<br /> {"cell":["Child_A1_3","ubicacion","2","2","true","false","true"]},<br /> {"cell":["Child A2_1","ubicacion","2","3","true","false","true"]},<br /> {"cell":["Child A2_2","ubicacion","2","3","true","false","true"]},<br /> {"cell":["Child A2_3","ubicacion","2","3","true","false","true"]}<br /> ]}</div> |
I hope anybody can help me, thanks in advance…
Best Regards,
Ver
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top