I need to work with some large dataset, an XML having links to images that I
must show, basically a gallery like many around there, so I want to do some
paging and of course lazy replication, so, the basic code looks like this:
<view clip="true" width="540" id="cont">
<view id="list">
<simplelayout axis="x"/>
<image>
<datapath xpath="s:/items[1]/item/img_url/text()"
replication="lazy"/>
</image>
</view>
</view>
But when I try this I get the following error:
INFO: __LZprocessOperator: p is null in Datapath for image
What am I missing?
Thank you!!