Hello, i'm wondering what rule could do the following, or even is it possible. Given a schema describing an array with any number of items (user can add items on-the-fly as usual):
{
"type": "array",
"items": {
"doyoulike": {
"type": "boolean"
},
"howmuch": {
"type": "number"
}
}
}
and i want a rule that hides (or disables) the "howmuch" prop of ANY item where the "doyoulike" prop gets unchecked.
It maybe related to RXNT/json-rules-engine-simplified#29 that have also an upcoming story but studying that i wasn't really enlighted if doing the above is even possible right now.
Hello, i'm wondering what rule could do the following, or even is it possible. Given a schema describing an array with any number of items (user can add items on-the-fly as usual):
and i want a rule that hides (or disables) the "howmuch" prop of ANY item where the "doyoulike" prop gets unchecked.
It maybe related to RXNT/json-rules-engine-simplified#29 that have also an upcoming story but studying that i wasn't really enlighted if doing the above is even possible right now.