Tooltip Issue 2.0

Tooltip Issue 2.0

zgoforthzgoforth Posts: 493Questions: 98Answers: 2

Link to test case: https://jsfiddle.net/BeerusDev/n06greay/69/

So I accidentally marked my other question as answered, I don't know how to undo that.

I fixed the error of where the full data stops showing, but now all that populates to the rows where full.Notes is not null, is "Notes: " the data doesn't populate

This question has an accepted answers - jump to answer

Answers

  • kthorngrenkthorngren Posts: 20,145Questions: 26Answers: 4,736
    Answer ✓

    Inspect one of your cells to see what you are generating, for example:

    <td>
      <div title="Notes:" testing"="">
        Training 1
      </div>
    </td>
    

    Looks like you have your double quotes messed up. You will need to fix the string you are building. It should look like this:

    <div title="Notes: testing">
    

    Kevin

  • zgoforthzgoforth Posts: 493Questions: 98Answers: 2

    Thanks Kevin!

Sign In or Register to comment.