Hello.
How I can go through all the rows of the Table Records from JS. For example, this snippet returns false
SyntaxEditor Code Snippet
"<script> var x = setInterval(function() { let table = $('#" + TestTimerTable.Id + "'); if(table.rows[0] != null) { alert('true') } else { alert('false'); } }, 1000); </script>"