hi i retrieve data as a JSON string like
var jsonPretty = JSON.stringify(data, null, 2);
{
"GetPageInfoResult": [{
"main": {
"sub": [],
"tittle": "hllo",
"startvalue": "21",
"stopvalue": "45",
"status": "",
"accumalated": "",
"comment": ""
}
}]
}
how can i get my my column content as:
$("tr[data-id=1] > td:nth-child(1)").text(hllo)
.
$("tr[data-id=1] > td:nth-child(2)").text(21)
$("tr[data-id=1] > td:nth-child(3)").text(45)