search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

limitations trial version?

Asked by Esperanza
6 years ago.

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 !!");
}
});

Answer posted by Dan Letecky [DayPilot]
6 years ago.

You can use the browser console to check if there is any error in the input data. Just type:

dp.resources

to see the resources array.

The trial version will display 71 rows without any problem. The following demo displays 300 resources + their children:

https://javascript.daypilot.org/demo/scheduler/rowprogressive.html

If the data is correct you can also check the heightSpec value (https://doc.daypilot.org/scheduler/height/). Some of the options would limit the control height (but the remaining rows should always be accessible using a scrollbar).

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.