Hello,
you can also use the Indexed Visibility Condition which permits you to display links only in case of specific conditions (in your case: "name" attribute == "enric").
For more details and an example refer to: Help -> WebRatio Release Notes -> Indexed Conditions paragraph
In your case:
1) Add a Page Variable (right click on the Page -> Add -> Variable) which refers to the desired attribute of the Index Unit.

2) Add a Condition Expression (right click on the Page -> Add -> Condition Expression) working on the previous defined Variable. The Expression defines the value of the variable to be considered for the visibility. E.g. var2 == "enric".

3) Apply the Visibility Condition to the Index Unit. Select the Index Unit in the Grid and in the Properties Panel -> Condition tab -> set the Link Visibility Cond. property to the previous defined condition.

If you apply a custom unit template, you have to update it by adding the "position" attribute to the "wr:Visible" tags that are used inside loops over data.
....
<c:forEach var="current" varStatus="status" items="${<wr:UnitId/>.data}">
....
<wr:Visible context="......" position="'index'">
....
</wr:Visible>
....
</c:forEach>
....