<!-- repeater requires unique identification mechanism of the row-nodes -->
<!-- (it is of course possible to implement other binding strategies) -->
+ <!-- important note: the row-path is used inside jxpath-createPath context,
+ as a consequence it cannot have dependent children or predicates -->
<fb:repeater id="contacts"
parent-path="."
row-path="contacts"
unique-row-id="id"
unique-path="@id">
Why did you change that? Currently in my application I have: row-path="member[position() < 3]" row-path=".[member/gender = 'female']" row-path=".[count(../member) > 1]" row-path="member[id != $id]"
and list goes on. With your change, this app won't work anymore. So what do I do in this position?
Vadim
