I have a JSON file with multiple 'rows', how can i just show the rows i need?
In my case, i need to show the Name
and Score
, also, i need the IP
to show up when i click a user's name, and do not show any UselessData
rows.
(I do not require code for all that, i just need to get the general idea)
JSON File
{
"records": [
{
"name": "AAAA",
"score": 100,
"IP" : "0.0.0.0",
"UselessData" : "Whatever"
},
{
"name": "BBBB",
"score": 50,
"IP" : "1.1.1.1",
"UselessData" : "Whatever"
},
[...]
],
}
I've been searching through de Documentation and a bit of the Source Code, but did not see anything like it, i may have just skipped it though, because it seems like a basic setting, but i just cannot figure it out.