Hi,
The xml api is very well documented, but I am unclear on the equivalents if I wanted to use a json string. Below is an example xml.
[code]
1 2 px 42% 41% [/code] I have translated it to the json string below:{"rows": {
"head": {
"column": [
{
"width": 238,
"type": "edtxt",
"align": "center",
"content": 1
},
{
"width": 237,
"type": "edtxt",
"align": "center",
"content": 2
}
],
"settings": {"colwidth": "px"}
},
"row": {
"id": 123,
"cell": [
{
"validate": "checkWidthPercent",
"content": "42%"
},
{
"validate": "checkWidthPercent",
"content": "41%"
}
]
}
}}
Could you please correct the json string so that it works like the xml version?
Cheers,
Alex