I have problem with incorrect trigger
We have json, say ,
{"data":[{"name":"N1","check":true,"connect":true,"stream": true}]}
and I parse and make item prototype . All is OK with it. But I'd like, that I see trigger for stream , when it is false only when check is true. What I have: if I write trigger
stream.last()=false and check.last()=false
I see problem , which immediately closed and I can see, that problem duration was 0.
The same is placed, when I make trigger separate trigger
check.last()=false
and make stream.last()=false dependent on check.last()
What's wrong?
We have json, say ,
{"data":[{"name":"N1","check":true,"connect":true,"stream": true}]}
and I parse and make item prototype . All is OK with it. But I'd like, that I see trigger for stream , when it is false only when check is true. What I have: if I write trigger
stream.last()=false and check.last()=false
I see problem , which immediately closed and I can see, that problem duration was 0.
The same is placed, when I make trigger separate trigger
check.last()=false
and make stream.last()=false dependent on check.last()
What's wrong?
Comment