I have this flow. EntitiesData have many record that have a attribute is IsNew. The value may be true or false.
The result returned is wrong result. Please help me.
How to do it
Hello Minh,
The issue with condition, it should be EntitiesData.IsNew.
When you are using current you are checking value of IsNew attribute for each record against value of IsNew of first record into list
In fact, it should just be "IsNew", as "EntitiesData.IsNew" will give an error (and rightly so).
Also note that in Traditional Web, using Current will probably work, but in Reactive it doesn't.
Hi @Minh Quang Nguyen
May you need to create input parameter for SaveOnClick which is the boolean type and pass that parameter to that condition where you used that filter condition . May be in your place it is taking the first record value.
Regards,
Kiran Shetty
Hi Minh Quang Nguyen,
EntitiesData is type of list, you can directly use IsNew attribute in list filter's condition.