I try add 71rows but just show 31rows
I dont know what I do....
this is the code:::
$.ajax({
url: "../../Handler.ashx?tip=areagroup&ip=" + $('#id_proy_tab').val(),
contentType: 'application/text; charset=utf-8',
type: "POST",
cache: false,
async: true,
dataType: "text",
success: function (json) {
var datamk = json.split('|');
obj = JSON.parse(datamk[1]);
// obj2 = JSON.parse(datamk[1]);
var dato1;
for (var i = 0; i < obj.length; i++) //The json object has lenght
{
dp.resources.push({ name: obj[i].area + " - " + obj[i].seccion, id: i, expanded: true, dynamicChildren: false, children: [] });
}
dp.update();
},
error: function (jqXHR, exception) {
alert("Error al Consultar !!");
}
});