mendix xpath constraint

0
why is this xpath constraint not working ?   [$Helper.id = $NewHelperObject/id]
asked
1 answers
6

if you want to use it in Xpath Retrieve, you can write it something like this:
 

[id= $NewHelper/id]

And That will work

 

But if you want to write this Xpath in Selectable objects or ListView then:

 

[$CurrentObject/id= $NewHelper/id]

Should Do the trick,

 

Let me know, if you have any issues,

Hope it helps!!

answered