Hi everyone.
Im very new to this, so please forgive any stupidity.
Im sure this is really rather retarded, but zeros are not being read from my xml file into the dynamic text boxes. ie. if I have a 10 it reads it as 1, and if I have 101 it reads it as 11.
the strings calling the nodes from the xml file look like this:
this.ref[“pos1”].text = nodes[0].firstChild.firstChild.toString();
and the xml file is like this:
<?xml version=“1.0” encode=“UTF-8”?>
<nodes>
<node>
<pos1>Wanderers</pos1>
<played1>10</played1>
<won1>7</won1>
<lost1>5</lost1>
<draw1>2</draw1>
<goalsfor1>35</goalsfor1>
<goalsagainst1>12</goalsagainst1>
<goaldiff1>23</goaldiff1>
<bonus1>3</bonus1>
<points1>26</points1>
</node>
</nodes>
Please help me! Any input would be greatly appreciated!
Thanks.
Rob