51
Views
4
Comments
List Filter cannot working

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

2020-11-25 10-45-32
Mostafa Othman
Champion

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


2020-09-15 13-07-23
Kilian Hekhuis
 
MVP

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.

UserImage.jpg
Kiran Shetty

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


2022-12-30 09-46-57
Deepika Patel

Hi Minh Quang Nguyen,

EntitiesData is type of list, you can directly use IsNew attribute in list filter's condition. 

Regards,


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.