• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

read csv-data and put it in an array

Scheduled Pinned Locked Moved Utilities
313 Posts 3 Posters 408.7k Views 4 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    Perlchamp
    last edited by Perlchamp May 2, 2020, 9:10 PM May 2, 2020, 9:07 PM

    @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 ?

    S 1 Reply Last reply May 2, 2020, 10:37 PM Reply Quote 0
    • S Offline
      sdetweil @Perlchamp
      last edited by May 2, 2020, 10:37 PM

      @Perlchamp cannot escape tags here, long time complaint

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      1 Reply Last reply Reply Quote 0
      • P Offline
        Perlchamp
        last edited by May 2, 2020, 10:38 PM

        did it !
        this.loaded = true; was wrong placed …

        1 Reply Last reply Reply Quote 0
        • P Offline
          Perlchamp
          last edited by May 2, 2020, 10:41 PM

          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 :-))

          1 Reply Last reply Reply Quote 0
          • P Offline
            Perlchamp
            last edited by May 2, 2020, 10:45 PM

            this is the status at the moment :
            image

            S 1 Reply Last reply May 2, 2020, 10:45 PM Reply Quote 0
            • S Offline
              sdetweil @Perlchamp
              last edited by May 2, 2020, 10:45 PM

              @Perlchamp cool… do you want ages aligned?

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              1 Reply Last reply Reply Quote 0
              • P Offline
                Perlchamp
                last edited by May 2, 2020, 10:47 PM

                yes, of course, sir …

                S 1 Reply Last reply May 2, 2020, 10:50 PM Reply Quote 0
                • S Offline
                  sdetweil @Perlchamp
                  last edited by sdetweil May 2, 2020, 10:55 PM May 2, 2020, 10:50 PM

                  @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…

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  1 Reply Last reply Reply Quote 0
                  • P Offline
                    Perlchamp
                    last edited by Perlchamp May 2, 2020, 10:55 PM May 2, 2020, 10:55 PM

                    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 ?

                    S 1 Reply Last reply May 2, 2020, 10:57 PM Reply Quote 0
                    • S Offline
                      sdetweil @Perlchamp
                      last edited by May 2, 2020, 10:57 PM

                      @Perlchamp eh? commenting out a line?

                      have a th is the same as what you have document.createElement(“th”)

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 18
                      • 19
                      • 20
                      • 21
                      • 22
                      • 31
                      • 32
                      • 20 / 32
                      20 / 32
                      • First post
                        200/313
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy