First at all, I want to thanks you this repo, because I want to use for creating my own nodes, but I have a problem when I created a group and add more than 99 rows on realtime.

always only save the first 99 data values and nothing more beyond 99. After that, the json created is empty beyond 99 element.
A normal json entry for any row can be like this:
{
"metadatoA": "DEV",
"metadatoAType": "str",
"metadatoB": "HOUSE",
"metadatoBType": "str",
"metadatoC": "",
"metadatoCType": "str",
"destino": "output21",
"destinoType": "str"
},
but after 99 element, the rest of the elements are like this:
{
"metadatoA": "",
"metadatoAType": "str",
"metadatoB": "",
"metadatoBType": "str",
"metadatoC": "",
"metadatoCType": "str",
"destino": "",
"destinoType": "str"
},
is empty.
It's a bug of the node-maker or can be related with navigator memory. I'm lost with this issue and if you can help me with this, I will be graceful with you.
Regards,
Sergio
First at all, I want to thanks you this repo, because I want to use for creating my own nodes, but I have a problem when I created a group and add more than 99 rows on realtime.
always only save the first 99 data values and nothing more beyond 99. After that, the json created is empty beyond 99 element.
A normal json entry for any row can be like this:
{
"metadatoA": "DEV",
"metadatoAType": "str",
"metadatoB": "HOUSE",
"metadatoBType": "str",
"metadatoC": "",
"metadatoCType": "str",
"destino": "output21",
"destinoType": "str"
},
but after 99 element, the rest of the elements are like this:
{
"metadatoA": "",
"metadatoAType": "str",
"metadatoB": "",
"metadatoBType": "str",
"metadatoC": "",
"metadatoCType": "str",
"destino": "",
"destinoType": "str"
},
is empty.
It's a bug of the node-maker or can be related with navigator memory. I'm lost with this issue and if you can help me with this, I will be graceful with you.
Regards,
Sergio