Two different data grids with one entity

0
Hi community, following situation: I want to create a todo list. I have the entity with “issue”, “startdate”… and “status”. Now I show it in a data grid. When a user changes the status (Enum) from activ to done, it has to be shown i a different Data Grid, so all activ issues hast to be shown in one grid and the done issues in another grid.   Please help me.   Thanks.
asked
4 answers
1

Don’t forget the brackets on Xpaths: 

I assume your xpath should look something like this

[Module.Entityname/Status = Module.Enumeration.Done]

answered
1

You should set the Xpath constraints of your datagrids.

 

On the left side you can show all issues where

$issue/status != done

On the right side you make the same datagrid, only with the xpath set as:

$issue/status = done

answered
1

good tip. but I can´t choose any variable/entity in the Xpath.

Message: required (...) + loop did not match anything at input ‘$’

answered
0

works fine. Thanks.

answered