I have this json {"heat":"jimmy","mavs":"dirk"}
i want to display them as a table with 2 rows using jqgrid.
normally the display will be like this with jqgrid
Here you can use Object.entries() method for this JSON structure if you want to use key as first td for row and value as second one.
Object.entries()
Here you can see nice example, how to do it.
Welcome to comment for additional help.