Datagrid 2 - Selecting only filtered items with select-all-microflow

2
Hi, I´m using a datagrid2. I integrated a select-all function with check boxes and a microflow to execute. This works perfectly fine. But, when I´m filtering the objects and select all, not just the filtered items are selected but all items. This makes sense since my microflow sets the boolean attribute  ‘selected’ of all objects to true.  How can I just select these filtered items? I don´t wanna select each object separately.  Hope someone can help me. Thank you in advance! Hannah
asked
3 answers
0

Hi, 

Create a entity “View” and link it with the main entity with one to many associations and use it in the data view instead of the main entity.
Also, create a microflow and in that microflow filter the list and then create a view object and link the object with the filtered list. Then, on each filter’s on click event call that microflow.
Now, in the select microflow you will have the view object linked with the only filtered list. 

Also, put the data grid-2 inside the data view so that the view object will be available in the filter’s microflow and from that object you can filter the list. In the data grid-2 use the associations as a source of the data.


 

 

answered
0

This is too complicated.  I think this works as expected in the old data grid.  

answered
0

Hello, 

with the new version of the datagrid 2, we can genarate files with only filtred data, using nanoflows.

 

 

answered