I want to do something like the attached image
.
Right now I’m filling the column with html-like string, like "<span style='color: red'>Alarm</span><br>" for the red Alarm text. But ideally, I want for each of row inside cell to be bind with javascript, as in using $('#smartTableId') will get the parent of the table, then I just go through the DOM like $('#smartTableId').children.children to get the row element <row><span>Alarm</span></row>.
Is there any way to do this right now in the smart-table API?