My data is returned like below and the array is mapped to a grid in this way. How would I hide the entire row if nutrient_name = "Calcium" for example. I know how to hide the labels they are mapped to based on values. But how the entire row?
"nutrients":[
{
"nutrient_name":"Calcium",
"nutrient_value":"",
"nutrient_uom":"mg",
"nutrient_fe_level":"4"
},
{
"nutrient_name":"Calories",
"nutrient_value":"150.0",
"nutrient_uom":"Cal",
"nutrient_fe_level":"6"
},
{
"nutrient_name":"Calories from Fat",
"nutrient_value":"40.0",
"nutrient_uom":"Cal",
"nutrient_fe_level":"6"
}
]