PDA

View Full Version : xml ISO characters, again


julian_lp
04-11-2006, 07:58 PM
Given the following code

<canvas>
<dataset name="myData">
<myXML>
<person id="1">
<user>áéíóúñ</user>
<pass>áéíóúñ</pass>
</person>
<person id="2">
<user>aeioun</user>
<pass>aeioun</pass>
</person>

</myXML>
</dataset>

<view name="rowOfData" datapath="myData:/myXML[1]/person">
<simplelayout axis="x" />
<text datapath="user/text()" />
<text datapath="pass/text()" />
<text datapath="@id" />
</view>

</canvas>





Laszlo seems not to be able to render "person id=1" at all, whereas "person id=2" looks fine.

Could be possible that retieving characters like á é í ó ú is an impossible job to a Laszlo app?

I wouldn't believe, but...

Does anybody know something about this subject?

regards - julian