Thymeleaf javascript replacing an image source based on text in table










2















this is my first post. I have been trying to look for an answer that but I can't find one.



I am trying to replace an image source in my HTML dependent on text displayed in the td.status, for example "SUBMITTED"



My HTML :



<table id = "myTable">
<tbody>
<tr>
<th>Reference</th>
<th>Version</th>
<th>Last Modified</th>
<th>Status</th>
</tr>

<tr th:each="td: $thedata">


<td><span th:text="$td.thedataPrimaryKey.ref"></span></td>
<td><span th:text="$td.thedataPrimaryKey.version"></span></td>
<td><span th:text="$td.thedataTimestamp"></span></td>

<td><span><img class="myImage" th:src="@/assets/images/offbulb.png" style="width:15px; height:10px"; /></span><span th:text="$td.status"></span></td>


</tbody>
</table>


My JS :



function f_color()

table = document.getElementById("myTable");

if (table.getElementsByTagName('TD')[3].value == 'SUBMITTED')

var image = document.getElementsByClassName("myImage");

image.src = "@/assets/images/redbulb.png";




As it stands, my blank lightbulb is showing, but not being replaced. I managed to do something similar with changing font colors previous to this but I am aiming to upgrade that with better visuals, unfortunately I am struggling and any help will be appreciated.










share|improve this question


























    2















    this is my first post. I have been trying to look for an answer that but I can't find one.



    I am trying to replace an image source in my HTML dependent on text displayed in the td.status, for example "SUBMITTED"



    My HTML :



    <table id = "myTable">
    <tbody>
    <tr>
    <th>Reference</th>
    <th>Version</th>
    <th>Last Modified</th>
    <th>Status</th>
    </tr>

    <tr th:each="td: $thedata">


    <td><span th:text="$td.thedataPrimaryKey.ref"></span></td>
    <td><span th:text="$td.thedataPrimaryKey.version"></span></td>
    <td><span th:text="$td.thedataTimestamp"></span></td>

    <td><span><img class="myImage" th:src="@/assets/images/offbulb.png" style="width:15px; height:10px"; /></span><span th:text="$td.status"></span></td>


    </tbody>
    </table>


    My JS :



    function f_color()

    table = document.getElementById("myTable");

    if (table.getElementsByTagName('TD')[3].value == 'SUBMITTED')

    var image = document.getElementsByClassName("myImage");

    image.src = "@/assets/images/redbulb.png";




    As it stands, my blank lightbulb is showing, but not being replaced. I managed to do something similar with changing font colors previous to this but I am aiming to upgrade that with better visuals, unfortunately I am struggling and any help will be appreciated.










    share|improve this question
























      2












      2








      2








      this is my first post. I have been trying to look for an answer that but I can't find one.



      I am trying to replace an image source in my HTML dependent on text displayed in the td.status, for example "SUBMITTED"



      My HTML :



      <table id = "myTable">
      <tbody>
      <tr>
      <th>Reference</th>
      <th>Version</th>
      <th>Last Modified</th>
      <th>Status</th>
      </tr>

      <tr th:each="td: $thedata">


      <td><span th:text="$td.thedataPrimaryKey.ref"></span></td>
      <td><span th:text="$td.thedataPrimaryKey.version"></span></td>
      <td><span th:text="$td.thedataTimestamp"></span></td>

      <td><span><img class="myImage" th:src="@/assets/images/offbulb.png" style="width:15px; height:10px"; /></span><span th:text="$td.status"></span></td>


      </tbody>
      </table>


      My JS :



      function f_color()

      table = document.getElementById("myTable");

      if (table.getElementsByTagName('TD')[3].value == 'SUBMITTED')

      var image = document.getElementsByClassName("myImage");

      image.src = "@/assets/images/redbulb.png";




      As it stands, my blank lightbulb is showing, but not being replaced. I managed to do something similar with changing font colors previous to this but I am aiming to upgrade that with better visuals, unfortunately I am struggling and any help will be appreciated.










      share|improve this question














      this is my first post. I have been trying to look for an answer that but I can't find one.



      I am trying to replace an image source in my HTML dependent on text displayed in the td.status, for example "SUBMITTED"



      My HTML :



      <table id = "myTable">
      <tbody>
      <tr>
      <th>Reference</th>
      <th>Version</th>
      <th>Last Modified</th>
      <th>Status</th>
      </tr>

      <tr th:each="td: $thedata">


      <td><span th:text="$td.thedataPrimaryKey.ref"></span></td>
      <td><span th:text="$td.thedataPrimaryKey.version"></span></td>
      <td><span th:text="$td.thedataTimestamp"></span></td>

      <td><span><img class="myImage" th:src="@/assets/images/offbulb.png" style="width:15px; height:10px"; /></span><span th:text="$td.status"></span></td>


      </tbody>
      </table>


      My JS :



      function f_color()

      table = document.getElementById("myTable");

      if (table.getElementsByTagName('TD')[3].value == 'SUBMITTED')

      var image = document.getElementsByClassName("myImage");

      image.src = "@/assets/images/redbulb.png";




      As it stands, my blank lightbulb is showing, but not being replaced. I managed to do something similar with changing font colors previous to this but I am aiming to upgrade that with better visuals, unfortunately I am struggling and any help will be appreciated.







      javascript html thymeleaf






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 13 '18 at 16:27









      Chris PetersChris Peters

      225




      225






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Do you need to do it in JavaScript? I think this should be done in Thymeleaf, myself.



          <td>
          <img th:if="$td.status != 'SUBMITTED'" class="myImage" th:src="@/assets/images/offbulb.png" style="width:15px; height:10px"; />
          <img th:if="$td.status == 'SUBMITTED'" class="myImage" th:src="@/assets/images/redbulb.png" style="width:15px; height:10px"; />
          <span th:text="$td.status" />
          </td>





          share|improve this answer























          • No, there is no set reason it has to be in javascript, I am learning and found it easier. Can I do that if with say, 4 status's? rather than just "SUBMITTED" or not "SUBMITTED?" - I will test when I am back at my code

            – Chris Peters
            Nov 13 '18 at 16:54












          • I have checked and it works perfectly, thank you very much. I did try use if statements before but couldn't get multiple ones working.

            – Chris Peters
            Nov 13 '18 at 17:02










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53285403%2fthymeleaf-javascript-replacing-an-image-source-based-on-text-in-table%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Do you need to do it in JavaScript? I think this should be done in Thymeleaf, myself.



          <td>
          <img th:if="$td.status != 'SUBMITTED'" class="myImage" th:src="@/assets/images/offbulb.png" style="width:15px; height:10px"; />
          <img th:if="$td.status == 'SUBMITTED'" class="myImage" th:src="@/assets/images/redbulb.png" style="width:15px; height:10px"; />
          <span th:text="$td.status" />
          </td>





          share|improve this answer























          • No, there is no set reason it has to be in javascript, I am learning and found it easier. Can I do that if with say, 4 status's? rather than just "SUBMITTED" or not "SUBMITTED?" - I will test when I am back at my code

            – Chris Peters
            Nov 13 '18 at 16:54












          • I have checked and it works perfectly, thank you very much. I did try use if statements before but couldn't get multiple ones working.

            – Chris Peters
            Nov 13 '18 at 17:02















          0














          Do you need to do it in JavaScript? I think this should be done in Thymeleaf, myself.



          <td>
          <img th:if="$td.status != 'SUBMITTED'" class="myImage" th:src="@/assets/images/offbulb.png" style="width:15px; height:10px"; />
          <img th:if="$td.status == 'SUBMITTED'" class="myImage" th:src="@/assets/images/redbulb.png" style="width:15px; height:10px"; />
          <span th:text="$td.status" />
          </td>





          share|improve this answer























          • No, there is no set reason it has to be in javascript, I am learning and found it easier. Can I do that if with say, 4 status's? rather than just "SUBMITTED" or not "SUBMITTED?" - I will test when I am back at my code

            – Chris Peters
            Nov 13 '18 at 16:54












          • I have checked and it works perfectly, thank you very much. I did try use if statements before but couldn't get multiple ones working.

            – Chris Peters
            Nov 13 '18 at 17:02













          0












          0








          0







          Do you need to do it in JavaScript? I think this should be done in Thymeleaf, myself.



          <td>
          <img th:if="$td.status != 'SUBMITTED'" class="myImage" th:src="@/assets/images/offbulb.png" style="width:15px; height:10px"; />
          <img th:if="$td.status == 'SUBMITTED'" class="myImage" th:src="@/assets/images/redbulb.png" style="width:15px; height:10px"; />
          <span th:text="$td.status" />
          </td>





          share|improve this answer













          Do you need to do it in JavaScript? I think this should be done in Thymeleaf, myself.



          <td>
          <img th:if="$td.status != 'SUBMITTED'" class="myImage" th:src="@/assets/images/offbulb.png" style="width:15px; height:10px"; />
          <img th:if="$td.status == 'SUBMITTED'" class="myImage" th:src="@/assets/images/redbulb.png" style="width:15px; height:10px"; />
          <span th:text="$td.status" />
          </td>






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 13 '18 at 16:49









          MetroidsMetroids

          6,80621124




          6,80621124












          • No, there is no set reason it has to be in javascript, I am learning and found it easier. Can I do that if with say, 4 status's? rather than just "SUBMITTED" or not "SUBMITTED?" - I will test when I am back at my code

            – Chris Peters
            Nov 13 '18 at 16:54












          • I have checked and it works perfectly, thank you very much. I did try use if statements before but couldn't get multiple ones working.

            – Chris Peters
            Nov 13 '18 at 17:02

















          • No, there is no set reason it has to be in javascript, I am learning and found it easier. Can I do that if with say, 4 status's? rather than just "SUBMITTED" or not "SUBMITTED?" - I will test when I am back at my code

            – Chris Peters
            Nov 13 '18 at 16:54












          • I have checked and it works perfectly, thank you very much. I did try use if statements before but couldn't get multiple ones working.

            – Chris Peters
            Nov 13 '18 at 17:02
















          No, there is no set reason it has to be in javascript, I am learning and found it easier. Can I do that if with say, 4 status's? rather than just "SUBMITTED" or not "SUBMITTED?" - I will test when I am back at my code

          – Chris Peters
          Nov 13 '18 at 16:54






          No, there is no set reason it has to be in javascript, I am learning and found it easier. Can I do that if with say, 4 status's? rather than just "SUBMITTED" or not "SUBMITTED?" - I will test when I am back at my code

          – Chris Peters
          Nov 13 '18 at 16:54














          I have checked and it works perfectly, thank you very much. I did try use if statements before but couldn't get multiple ones working.

          – Chris Peters
          Nov 13 '18 at 17:02





          I have checked and it works perfectly, thank you very much. I did try use if statements before but couldn't get multiple ones working.

          – Chris Peters
          Nov 13 '18 at 17:02

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53285403%2fthymeleaf-javascript-replacing-an-image-source-based-on-text-in-table%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Barbados

          How to read a connectionString WITH PROVIDER in .NET Core?

          Node.js Script on GitHub Pages or Amazon S3