I understand this might be out of the scope of Meteor help but since my app is made in Meteor I thought of asking for help here. I have a responsive table which I have copied and edited the content from this link (https://codepen.io/marclundgren/pen/hgelI) and I would like to receive events that will return an array when ticking the checkboxes of the table like below.
Frequency Volume Modulation
Pt
Phi
Eta
The array will be the bind column and row for example:
[Frequency:Pt, Volume:Phi, Modulation:Eta]
Here is the current version of my table.
<head>
<title>ipsosboard</title>
<meta charset="utf-8">
</head>
<body>
{{> ipsosboard}}
</body>
<template name="ipsosboard">
<h3>Map data to parameters</h3>
<table class="responsive-table-input-matrix">
<thead>
<tr>
<th></th>
<th>Frequency</th>
<th>Volume</th>
<th>Modulation</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pt</td>
<td><input type="checkbox"></td>
<td><input type="checkbox"></td>
<td><input type="checkbox"></td>
</tr>
<tr>
<td>Phi</td>
<td><input type="checkbox"></td>
<td><input type="checkbox"></td>
<td><input type="checkbox"></td>
</tr>
<tr>
<td>Eta</td>
<td><input type="checkbox"></td>
<td><input type="checkbox"></td>
<td><input type="checkbox"></td>
</tr>
</tbody>
</table>
</template>