This is weird. I am "building" a string of html from a db, then assigning it's value to a text box like this...
When I trace the xml it looks right, it is very simple...
The code is so simple it makes me laugh, ....
for(i=0;i<arrayHtaml.length;i++){
strNewHtml = strNewHtml + "<span class='title'>"+arrHtml+"</span><br>";
}
myTextBox.text = strNewHtml
The problem is the line breaks (<br>), every where I have a line break, there is a BULLET in the text box, I have been trying to figure this one out of 2 days!. I I "manually" write the html, to simulate what my loop is writing, it works fine? Any ideas would be great!
David
When I trace the xml it looks right, it is very simple...
The code is so simple it makes me laugh, ....
for(i=0;i<arrayHtaml.length;i++){
strNewHtml = strNewHtml + "<span class='title'>"+arrHtml+"</span><br>";
}
myTextBox.text = strNewHtml
The problem is the line breaks (<br>), every where I have a line break, there is a BULLET in the text box, I have been trying to figure this one out of 2 days!. I I "manually" write the html, to simulate what my loop is writing, it works fine? Any ideas would be great!
David