setting attributes cell in json

Hello,

In XML format i easily set my attribute grid cell (type, colspan, rowspan)

MY CELL MY CELL TOO

How can do that in JSON format ?

Thank You.

Here you can find a syntax of the supported JSON format with details:
docs.dhtmlx.com/grid__data_form … jsonformat
You need to implement something like:
{ id:1002,
data:[
{“value”:“100”,“type”:“ed”, rowspan:“2”},
{“value”:“200”,“type”:“ed”, colspan:“2”}
]}

Oh I missed the docs,
thank’s a lot. Very helpfully