Datatable is rendering [object Object] in my cell.
Datatable is rendering [object Object] in my cell.
jmhall09
Posts: 4Questions: 2Answers: 0
I have a json call that is returning this:
{
gpin: "14557847740000",
situsStreet: "1300 Regent University Dr",
zipCode: "23464",
squareFeet: [
{
sqFt: 6600
},
{
sqFt: 480
}
]
},
In my datatable I am trying to return sqFt. I am referencing data: "sqaureFeet" and it is return the object text. I am very new to this. How do I go about displaying the sqFt rather than [object Object]? Thanks in advance.
This discussion has been closed.
Answers
I am able to render all the other values just fine. squareFeet is my only issue.