Hi
I get data from an yet unknown amount of sensors. The data is then convertet to a table with the help nod-red-contrib-tableify. This works great.
I have now
msg: {
payload: with html table
devId: xxxx
}
What i would like to have now is a dashbaord which shows the tables of ALL devId's no matter what i try i only get the last message sent
this is my last try:
<div layout="row" layout-align="space-between">
<div id="{{'devId_'+$msg.devId}}" ng-bind-html="msg.payload"></div>
</div>
is there a way to add or ubdate only a section with devId and leave the others?