Read the statement by Michael Teeuw here.
read csv-data and put it in an array
-
@Perlchamp said in read csv-data and put it in an array:
bodyTD.innerHTML = person.name + “” + person.age + “”;
should be:
bodyTD.innerHTML = person.name + span class = … + person.age + /span;can’t send html tags here ? how i have to escape them here ?
-
@Perlchamp cannot escape tags here, long time complaint
-
did it !
this.loaded = true; was wrong placed … -
but this does not work yet:
var bodyTDimage = document.createElement("td"); bodyTDimage.className = "td-image"; bodyTDimage.id = "birthday-td-image"; if (birthday.charAt(0) === "0") { birthday = birthday.replace("0",""); birthday = birthday.substring(0,1); } bodyTDimage.innerHTML = birthday.substring(0,2);
the value will not displayed, but i will find a way. my code yet is far away from a smart code :-))
-
this is the status at the moment :
-
@Perlchamp cool… do you want ages aligned?
-
yes, of course, sir …
-
@Perlchamp need to specify width of td
By default, a browser will adjust table columns to fit the contents of the table. However, if you want to control the width of each column, you can do so by adjusting the width of each
or of a single row. if you had th, then you could see the length of the names as they go by, and then adjust the th width before sending the content to MM…
-
width:27px; is placed in css
but this://bodyTDimage.id = "birthday-td-image";
works. i really have to write html-text in the module-file ?
-
@Perlchamp eh? commenting out a line?
have a th is the same as what you have document.createElement(“th”)