Hi there,
I would like to get the values of one row when a button is being clicked but I am really new to node-red and js etc ...
I use this to get the values of my databases into a table :
<table id="table" border="1">
<thead>
<tr>
<th>Date de retour</th>
<th>SerialNumber</th>
<th>Reference Numerique</th>
<th>Stock</th>
<th>Statut</th>
<th>Emplacement</th>
<th>Réserver</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="row in msg.payload">
<td ng-repeat="item in row" >{{item}}</td>
<td><form><input type=submit value="réserver"></form></td>
</tr>
</tbody>
</table>
Any ideas ?
Thanks