I have run into an issue with my Dojo treegrid JSON store. It works perfectly with a small number of items, but fails when handling thousands of items. I am wondering if there are any limitations on the number of items or childItems in the store, or if there is a limit on the size of the JSON object itself.
{
"identifier": "id",
"label": "name",
"items": [
{
"id": "id1",
"type": "year",
"year": "2018",
"childItems": [
{
"id": "id0",
"projname": "Project 1"
},
{
.....
}
]
},
{
.....
}
]
}